Skip to content

gap-test-92 feat: Add left-right derangement property #48

gap-test-92 feat: Add left-right derangement property

gap-test-92 feat: Add left-right derangement property #48

---
name: gap-tests
run-name: gap-test-${{ github.event.number }} ${{ github.event.pull_request.title }}
on:
pull_request:
branches:
- main
# the `concurrency` settings ensure that not too many CI jobs run in parallel
concurrency:
# group by workflow and ref; the last slightly strange component ensures that for pull
# requests, we limit to 1 concurrent job, but for the master branch we don't
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
# The CI test job
test:
name: ${{ matrix.gap-branch }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
gap-branch:
- master
- stable-4.13
- stable-4.12
steps:
- uses: actions/checkout@v4
- uses: gap-actions/setup-gap@v2
with:
GAPBRANCH: ${{ matrix.gap-branch }}
- uses: gap-actions/build-pkg@v1
- uses: gap-actions/build-pkg-docs@v1
with:
use-latex: 'true'
- uses: gap-actions/run-pkg-tests@v2
- uses: gap-actions/run-pkg-tests@v2
with:
only-needed: true
- uses: gap-actions/process-coverage@v2
- uses: codecov/codecov-action@v4