Skip to content

Commit 9f3c84b

Browse files
WIP
1 parent c447deb commit 9f3c84b

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/regress.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,19 @@ on:
1212
jobs:
1313
regress-pre-commit:
1414
runs-on: ubuntu-latest
15+
env:
16+
SINGULARITY: 1
1517
steps:
16-
- uses: actions/checkout@v4
18+
- name: Clone Github Repo Action
19+
uses: actions/checkout@v4
20+
- name: Setup apptainer
21+
uses: eWaterCycle/[email protected]
22+
- name: Get container from cache
23+
id: cache-sif
24+
uses: actions/cache@v4
25+
with:
26+
path: .singularity/image.sif
27+
key: ${{ hashFiles('container.def', 'bin/.container-tag') }}
1728
- name: Get gems and node files from cache
1829
id: cache-bundle-npm
1930
uses: actions/cache@v4
@@ -25,6 +36,8 @@ jobs:
2536
- if: ${{ steps.cache-sif.outputs.cache-hit != 'true' }}
2637
name: Build container
2738
run: ./bin/build_container
39+
- name: Setup project
40+
run: ./bin/setup
2841
- uses: actions/setup-python@v5
2942
- uses: pre-commit/[email protected]
3043
regress-smoke:

0 commit comments

Comments
 (0)