Fix workspaces #9
Workflow file for this run
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
# This is temporary until/if: | ||
# https://github.com/gap-actions/run-pkg-tests/pull/24 | ||
# is merged, or something equivalent, then remove the script ci/run-tests.sh, | ||
# and use the save/load.g files as commented out below | ||
name: "Workspaces" | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- "main" | ||
- "stable-*.*" | ||
schedule: | ||
# Every day at 3:15 AM UTC | ||
- cron: '15 3 * * *' | ||
jobs: | ||
workspaces: | ||
name: "GAP 4.12.2 / ubuntu / 64" | ||
runs-on: ubuntu-latest | ||
container: | ||
image: jamesdbmitchell/gap-docker-minimal:version-4.12.2 | ||
options: --user root | ||
volumes: ${{ GITHUB_WORKSPACE }}:/home/gap/inst/gap-4.12.2/pkg | ||
Check failure on line 24 in .github/workflows/workspaces.yml GitHub Actions / WorkspacesInvalid workflow file
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "Run Semigroups packages' workspace tests" | ||
run: ci/run-tests-gap-tests-in-docker-container.sh |