20 lines
322 B
YAML
20 lines
322 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: pixi-build-rust
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install the pinned toolchain
|
|
run: pixi install
|
|
|
|
- name: Verify (formatting, lint, tests, docs)
|
|
run: pixi run check
|