-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 1 KB
/
python-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Python CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/[email protected]
with:
miniforge-version: latest
use-mamba: true
python-version: ${{ matrix.python-version }}
channel-priority: strict
- name: Install dependencies
run: |
mamba env update --file environment.yml --prune
which python
pip list
mamba list
- name: Test with pytest
run: |
python -m pytest --cov=zarrcade --cov-report=html --cov-report=term -W ignore::DeprecationWarning --html=htmlcov/test_results.html
- name: Upload pytest and coverage results
uses: actions/upload-artifact@v4
if: always()
with:
name: testcoverage-${{ matrix.os }}-py${{ matrix.python-version }}
path: |
htmlcov/*