Files
api-token-vault/.gitea/workflows/ci.yml
7000pctAUTO d7b957ce4d
Some checks failed
CI / test (push) Failing after 1s
fix: add Gitea Actions CI workflow for Rust project
2026-01-31 23:00:56 +00:00

20 lines
383 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: stable
- run: cargo build --all-features
- run: cargo test --all-features
- run: cargo clippy --all-features -- -D warnings