Skip to content

updates to testing workflows #1

updates to testing workflows

updates to testing workflows #1

Workflow file for this run

name: Run checks on push to main
on:
push:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.25.0
cache: true
environments: dev
activate-environment: dev
- run: ruff check
- run: ruff format --check
if: success() || failure()
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.25.0
cache: true
environments: default
activate-environment: default
- run: pyright