bebot/.gitea/workflows/ci.yaml
Workflow config file is invalid. Please check your config file: yaml: line 16: could not find expected ':'

19 lines
417 B
YAML

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