Cleanup but the BLE scanner stopped working #5
This file contains hidden or 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
| name: Continuous Integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "**/README.md" | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| rust-checks: | |
| name: Rust Checks | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| action: | |
| - command: build | |
| args: --release | |
| - command: fmt | |
| args: --all -- --check | |
| - command: clippy | |
| args: --all-features --workspace -- -D warnings | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| target: riscv32imac-unknown-none-elf | |
| toolchain: stable | |
| components: rust-src, rustfmt, clippy | |
| - name: Enable caching | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run command | |
| run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} |