-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (41 loc) · 1.09 KB
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CI
# Trigger the workflow on push or pull request
on:
push:
branches: ['master']
pull_request:
jobs:
# The CI test job
test:
name: ${{ matrix.gap-branch }} - HPCGAP ${{ matrix.HPCGAP }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
gap-branch:
- master
- stable-4.11
HPCGAP: ['no']
steps:
- uses: fkirc/skip-duplicate-actions@master
- uses: actions/checkout@v2
- uses: gap-actions/setup-gap-for-packages@v1
with:
GAPBRANCH: ${{ matrix.gap-branch }}
HPCGAP: ${{ matrix.HPCGAP }}
- uses: gap-actions/run-test-for-packages@v1
# The documentation job
manual:
name: Build manuals
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gap-actions/setup-gap-for-packages@v1
- uses: gap-actions/compile-documentation-for-packages@v1
with:
use-latex: 'true'
- name: 'Upload documentation'
uses: actions/upload-artifact@v1
with:
name: manual
path: ./doc/manual.pdf