22 lines
397 B
YAML
22 lines
397 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: pixi-build-rust
|
|
env:
|
|
CARGO_TARGET_DIR: /opt/cargo-target/${{ gitea.repository }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install the pinned toolchain
|
|
run: pixi install
|
|
|
|
- name: Verify (formatting, lint, tests, docs)
|
|
run: pixi run check
|