Skip to content

Directly give auth arg, as env is not used #33

Directly give auth arg, as env is not used

Directly give auth arg, as env is not used #33

Workflow file for this run

name: Test 🧪 & Check 🧐
on:
push:
branches:
- "**"
tags:
- "v*"
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
environment: [test-py312]
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with:
environments: ${{ matrix.environment }}
- name: Run tests
run: pixi r -e ${{ matrix.environment }} test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
check:
runs-on: ubuntu-latest
strategy:
matrix:
environment: [dev-py312]
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with:
environments: ${{ matrix.environment }}
- name: Run check
run: pixi r -e ${{ matrix.environment }} check
call-build-publish:
if: startsWith(github.ref, 'refs/tags/v')
needs: [test, check]
uses: ./.github/workflows/build-publish.yaml