ci: merge fast_checks into full_rust_checks

It's not necessary to have two separate linting workflows as the full
lints themselves are very quick.
This commit is contained in:
dundargoc 2024-02-02 11:38:12 +01:00
parent 1d8975319c
commit b122c59ca3
4 changed files with 38 additions and 75 deletions

32
.github/workflows/checks.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: Full Rust codebase checks
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
on:
workflow_call:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy, rustfmt
- run: cargo fmt -- --check
- run: cargo check --workspace --examples --tests --benches --bins
check_c_warnings:
name: Check C warnings
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Make C library to check that it's able to compile without warnings
run: make -j CFLAGS="-Werror"