Skip to content

Commit f5cf111

Browse files
committed
add apptainer to github actions tests
1 parent 1513195 commit f5cf111

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/_test.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,14 @@ jobs:
5151
pip-install: ".[dev]"
5252

5353
- name: Run tests
54-
run: tox -e tests
54+
run: |
55+
sudo apt update
56+
sudo apt install -y software-properties-common
57+
sudo apt install apptainer
58+
sudo add-apt-repository -y ppa:apptainer/ppa
59+
sudo apt update
60+
sudo apt install -y apptainer
61+
tox -e tests
5562
5663
- name: Upload coverage to Codecov
5764
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)