Bump actions/checkout from 5 to 6 in the dependencies group (#85) #160
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: tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install pixi | |
| uses: prefix-dev/[email protected] | |
| with: | |
| pixi-version: v0.59.0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: "pyproject.toml" | |
| - name: Install dependencies with pipx | |
| run: pixi install -e dev | |
| - name: Install pre-commit hooks | |
| run: pixi run -e dev pre-commit install | |
| - name: Run pre-commit hooks | |
| run: pixi run -e dev pre-commit run -a |