diff options
author | Horacio Sanson <hsanson@gmail.com> | 2021-01-22 18:27:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 09:27:36 +0000 |
commit | a1e6df987c28dd3e0efb7422f4ad85ee3bb3bebc (patch) | |
tree | f1dd144c024270720d433d80d17538291351f8f7 | |
parent | 7e3d2930d8defbcb233b0bc21822cb8e8377bec2 (diff) | |
download | ale-a1e6df987c28dd3e0efb7422f4ad85ee3bb3bebc.zip |
Fix 354 - Migrate CI from travis to Github Actions (#3549)
* Fix 354 - Migrate CI from travis to Github Actions
* Use matrix strategy for parallel tests
* Don't build image on each run
* Add push trigger on tags
Co-authored-by: Horacio Sanson <horacio@allm.inc>
-rw-r--r-- | .github/workflows/main.yml | 23 | ||||
-rw-r--r-- | .travis.yml | 16 |
2 files changed, 23 insertions, 16 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..7c182758 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +name: CI +on: + push: + branches: [ master ] + tags: + - /^v\d+\.\d+\.(x|\d+)$/ + pull_request: + branches: [ master ] + +jobs: + test_ale: + runs-on: ubuntu-latest + strategy: + matrix: + vim-version: + - '--vim-80-only' + - '--vim-81-only' + - '--neovim-only' + - '--linters-only' + steps: + - uses: actions/checkout@v2 + - name: Run tests + run: ./run-tests -v ${{ matrix.vim-version }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 00baff1c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -sudo: required -services: - - docker -language: generic -branches: - only: - - master - - /^v\d+\.\d+\.(x|\d+)$/ -env: - - OPTIONS=--vim-80-only - - OPTIONS=--vim-81-only - - OPTIONS=--neovim-only - - OPTIONS=--linters-only -script: | - ./run-tests -v $OPTIONS |