We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2703a0 commit 5d31928Copy full SHA for 5d31928
.github/workflows/github-actions-demo.yml
@@ -48,3 +48,24 @@ jobs:
48
run: |
49
ls ${{ github.workspace }}
50
- run: echo "🍏 This job's status is ${{ job.status }}."
51
+ build-linux:
52
+ runs-on: ubuntu-latest
53
+ strategy:
54
+ max-parallel: 5
55
+
56
+ steps:
57
+ - uses: actions/checkout@v4
58
+ - name: Set up Python 3.10
59
+ uses: actions/setup-python@v3
60
+ with:
61
+ python-version: '3.10'
62
+ - name: Add conda to system path
63
+ run: |
64
+ # $CONDA is an environment variable pointing to the root of the miniconda directory
65
+ echo $CONDA/bin >> $GITHUB_PATH
66
+ - name: Install dependencies
67
68
+ pip install -q .[examples]
69
+ - name: Test with pytest
70
71
+ pytest --durations=40 --cov=mammal --cov-fail-under=45 --capture=no mammal/examples/tests
0 commit comments