50.1 parameter workflow #172
This file contains hidden or 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: unit-test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [next, qa, main] | |
tags: ['v*'] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.41.4 | |
manifest-path: pyproject.toml | |
- name: run unit tests | |
run: | | |
echo "running unit tests" | |
pixi run test | |
# - name: upload coverage to codecov | |
# uses: codecov/codecov-action@v5 | |
# if: github.actor != 'dependabot[bot]' | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# - name: build conda package | |
# run: | | |
# echo "build and verify conda package" | |
# pixi run verify-conda |