blob: e6f82ea532ffd6071dfaf00c3818bd8ba437d8a2 (
plain) (
tree)
|
|
name: check
on: [ pull_request, push ]
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: run sccache
uses: mozilla-actions/[email protected]
- uses: actions/checkout@v4
- run: cargo check --release
- run: cargo clippy --release
|