-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from Travis CI to GitHub actions
- Loading branch information
Alexander Konovalov
committed
Apr 29, 2021
1 parent
22cb7d6
commit 67e83a1
Showing
3 changed files
with
33 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: CI | ||
|
||
# Trigger the workflow on push or pull request | ||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
# The CI test job | ||
test: | ||
name: ${{ matrix.gap-branch }} | ||
runs-on: ubuntu-latest | ||
# Don't run this twice on PRs for branches pushed to the same repository | ||
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
gap-branch: | ||
- master | ||
- stable-4.11 | ||
- stable-4.10 | ||
- stable-4.9 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gap-actions/setup-gap@v2 | ||
with: | ||
GAPBRANCH: ${{ matrix.gap-branch }} | ||
- uses: gap-actions/build-pkg@v1 | ||
- uses: gap-actions/run-pkg-tests@v2 | ||
- uses: gap-actions/process-coverage@v2 | ||
- uses: codecov/codecov-action@v1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters