Skip to content

Merge pull request #11 from JaneliaSciComp/t3-website #45

Merge pull request #11 from JaneliaSciComp/t3-website

Merge pull request #11 from JaneliaSciComp/t3-website #45

Workflow file for this run

name: Python CI
on:
push:
branches: [ main ]
# When this workflow is queued, automatically cancel any previous running
# or pending jobs from the same branch
concurrency:
group: pixi-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: ["ubuntu-latest"]
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v4
- name: Build and test
uses: prefix-dev/setup-pixi@v0.9.0
with:
pixi-version: v0.55.0
cache: true
- run: pixi run zarrcade test
- name: Upload pytest and coverage results
uses: actions/upload-artifact@v4
if: always()
with:
name: testcoverage-${{ matrix.os }}-py${{ matrix.python-version }}
path: |
htmlcov/*