Files
varde/.gitea/workflows/ci.yml
T
Bendik LynghaugandClaude Fable 5 a1fc85b62d
ci / quality (push) Failing after 15s
Workflows: back to actions/checkout, on v5
The v4 pin was the problem, not the action; use the current major.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-16 15:12:48 +02:00

26 lines
594 B
YAML

# Gitea Actions mirror of the Woodpecker quality bar (.ci/woodpecker.yaml):
# fmt, clippy -D warnings, full test suite.
name: ci
on:
push:
branches: [main]
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
container: rust:1
steps:
- uses: actions/checkout@v5
- name: rustfmt
run: |
rustup component add rustfmt
cargo fmt --all --check
- name: clippy
run: |
rustup component add clippy
cargo clippy --workspace --all-targets -- -D warnings
- name: test
run: cargo test --workspace