Files
techdebt-tracker-cli/.gitea/workflows/ci.yml
7000pctAUTO a2ae510563
Some checks failed
CI / test (push) Failing after 2s
fix: configure Rust CI workflow with cargo commands
2026-02-05 14:54:32 +00:00

20 lines
413 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-rust@v1
with:
rust-version: '1.70'
- run: cargo build --all-features
- run: cargo test --all-features
- run: cargo clippy --all-features -- -D warnings
- run: cargo fmt --check