Skip to content

formatting

formatting #48

Workflow file for this run

name: Pytest Dev
on:
pull_request:
push:
branches:
jobs:
test:
strategy:
matrix:
python-version: ["3.13"]
os: [ubuntu-latest]
name: Python ${{ matrix.os }} ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: prefix-dev/setup-pixi@v0.8.7
with:
pixi-version: v0.45.0
cache: true
environments: dev
- run: pixi run fmt
- run: pixi run lint
- run: pixi run types