Fix path #4
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
name: 'Build and test icepack' | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: docker.io/firedrakeproject/firedrake-vanilla@sha256:0809b1f513b2d27013c4a0a511b76f4c78190059bfdffc9626650c13bb447a71 | |
options: --user root | |
steps: | |
- name: Check out git repository | |
uses: actions/checkout@v3 | |
- name: Activate Firedrake virtual environment | |
run: | | |
. /home/firedrake/firedrake/bin/activate | |
echo PATH=$PATH >> $GITHUB_ENV | |
- name: Install package | |
run: pip install --editable . | |
- name: Run tests | |
run: pytest --ignore test/statistics_test.py --ignore grid_data_test.py --ignore plot_test.py --ignore meshing_test.py |