Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:

- name: "Checkout"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Add custom GAP root"
run: ln -f -s $PWD /tmp/gaproot/pkg/
Expand All @@ -27,10 +27,10 @@ jobs:

- name: "Validate PackageInfo.g"
shell: bash
run: gap -c "QuitGap(ValidatePackageInfo(\"PackageInfo.g\"));"
run: gap -c 'QuitGap(ValidatePackageInfo("PackageInfo.g"));'

- name: "Upload manual"
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: "Manual"
path: ./doc/manual.pdf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:

- name: "Checkout"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Setup Python"
uses: actions/setup-python@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ jobs:
steps:

- name: "Checkout"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Add custom GAP root"
run: ln -f -s $PWD /tmp/gaproot/pkg/

- name: "Verify that tests do not depend on PrimGrp/SmallGrp/TransGrp"
- name: "Verify that tests do not depend on GAPDoc/PrimGrp/SmallGrp/TransGrp"
shell: bash
run: gap --bare -c 'LoadPackage("GAPDoc");TestPackage("SmallClassNr");'
run: gap --bare -c 'TestPackage("SmallClassNr");'

lint:
name: "Run gaplint"
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,16 @@ jobs:
name: "Release the GAP package"
runs-on: ubuntu-latest

container:
image: ghcr.io/stertooy/gda-image:master-full

steps:

- name: "Checkout"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Setup GAP"
uses: gap-actions/setup-gap@v3
- name: "Add custom GAP root"
run: ln -f -s $PWD /tmp/gaproot/pkg/

- name: "Build manual"
uses: gap-actions/build-pkg-docs@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-gap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:

- name: "Checkout"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Add custom GAP root"
run: ln -f -s $PWD /tmp/gaproot/pkg/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:

- name: "Checkout"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Add custom GAP root"
run: ln -f -s $PWD /tmp/gaproot/pkg/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:

- name: "Checkout"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Validate CITATION.cff"
uses: citation-file-format/cffconvert-github-action@2.0.0
Expand Down