Making states init to default right away to correct data gathering bu… #79
This file contains 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: Lint | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: ['*'] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
environment: [py312] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
environments: ${{ matrix.environment }} | |
manifest-path: pixi.toml | |
pixi-version: v0.39.0 | |
cache: true | |
- run: pixi run -e ${{ matrix.environment }} lint-check | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
environment: [py311, py312, py313] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
environments: ${{ matrix.environment }} | |
manifest-path: pixi.toml | |
pixi-version: v0.39.0 | |
cache: true | |
- run: pixi run -e ${{ matrix.environment }} test |