Skip to content

Bump actions/checkout from 5 to 6 in the dependencies group (#85) #160

Bump actions/checkout from 5 to 6 in the dependencies group (#85)

Bump actions/checkout from 5 to 6 in the dependencies group (#85) #160

Workflow file for this run

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