diff options
| author | Adam Stankiewicz <sheerun@sher.pl> | 2020-08-23 23:40:50 +0200 | 
|---|---|---|
| committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-08-23 23:40:50 +0200 | 
| commit | ac71777dc2815cd81da67a6677419325093fb0b2 (patch) | |
| tree | 1e660efe9eae2dfe9778759bd9b57d6c7333de4e | |
| parent | 23defeb61028e25369f54bad521c8948a03f15ba (diff) | |
| download | vim-polyglot-ac71777dc2815cd81da67a6677419325093fb0b2.tar.gz vim-polyglot-ac71777dc2815cd81da67a6677419325093fb0b2.zip | |
Fix CI
| -rw-r--r-- | .github/workflows/test.yml | 15 | ||||
| -rw-r--r-- | .travis.yml | 2 | 
2 files changed, 16 insertions, 1 deletions
| 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 | 
