feat: recommended_for_debug and release #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
name: Rust Build | |
jobs: | |
build_and_test: | |
name: Build and run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup install stable | |
- run: RUSTFLAGS="-D warnings" cargo clippy # -- -Wclippy::pedantic | |
- run: RUSTFLAGS="-D warnings" cargo build --color=always --all-features | |
- run: cargo test --color=always |