bebot/.gitea/workflows/ci.yaml

19 lines
417 B
YAML
Raw Normal View History

2023-09-20 04:23:40 +00:00
name: CI
on:
- push
jobs:
ci:
name: janitorial
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: https://github.com/actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy
- run: |
cargo clippy --all-targets --all-features -- -D warnings
cargo fmt --check
cargo test --release