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 - name: clippy run: cargo clippy --all-targets --all-features -- -D warnings - name: formatting run: cargo fmt --check - name: test run: cargo test --release