From ac71777dc2815cd81da67a6677419325093fb0b2 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Sun, 23 Aug 2020 23:40:50 +0200 Subject: Fix CI --- .github/workflows/test.yml | 15 +++++++++++++++ .travis.yml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..e3775f65 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: Vim Polyglot CI + +on: + push: + pull_request: + schedule: + - cron: '0 0 * * 0' # weekly + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: rhysd/action-setup-vim@v1 + - name: Test + run: scripts/test diff --git a/.travis.yml b/.travis.yml index edb927de..d556face 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,4 +4,4 @@ before_script: - sudo apt-get update -q - sudo apt-get install -y vim - vim --version -script: ./test +script: scripts/test -- cgit v1.2.3