Bump the actions group across 1 directory with 3 updates #287
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| name: Unit tests | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| env: | |
| - pl014 | |
| - pl1 | |
| - py39 | |
| - py310 | |
| - py311 | |
| - py312 | |
| - py313 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: prefix-dev/setup-pixi@19eac09b398e3d0c747adc7921926a6d802df4da | |
| with: | |
| environments: ${{ matrix.env }} | |
| - name: Install repository | |
| run: | | |
| pixi run -e ${{ matrix.env }} postinstall | |
| - name: Run unittests | |
| uses: pavelzw/pytest-action@510c5e90c360a185039bea56ce8b3e7e51a16507 | |
| with: | |
| custom-pytest: pixi run -e ${{ matrix.env }} coverage | |
| report-title: ${{ matrix.env }} | |
| - name: Upload coverage reports to Codecov | |
| if: matrix.env == 'py312' | |
| uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| file: ./coverage.xml | |
| pre-commit-checks: | |
| # TODO: switch to pixi once there is a good way | |
| name: pre-commit | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| - name: Run pre-commit | |
| uses: quantco/pre-commit-conda@v1 | |
| lint-workflow-files: | |
| name: Lint workflow files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| # https://github.com/rhysd/actionlint/blob/main/docs/usage.md#use-actionlint-on-github-actions | |
| - name: Download actionlint | |
| id: get_actionlint | |
| run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
| - name: Check workflow files | |
| run: ${{ steps.get_actionlint.outputs.executable }} -color |