Skip to content

Bump prefix-dev/setup-pixi from 0.9.4 to 0.9.5 in the dependencies group #128

Bump prefix-dev/setup-pixi from 0.9.4 to 0.9.5 in the dependencies group

Bump prefix-dev/setup-pixi from 0.9.4 to 0.9.5 in the dependencies group #128

Workflow file for this run

name: Lint
on:
push: { branches: [ "main" ] }
pull_request: { branches: [ "main" ] }
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
python-linter:
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v6
with: { submodules: recursive }
- uses: prefix-dev/setup-pixi@v0.9.5
with: { pixi-version: v0.63.2 }
- name: pylint
run: pixi run pylint
- name: black
run: pixi run black --diff --check
- name: isort
run: pixi run isort -- --check --diff