Add necessary AppConfigs and handle the reconfiguration during ranging #46
Workflow file for this run
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
# Build, test and check the code against the linter and clippy | |
name: Build, Test, Format and Clippy | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust 1.67.1 | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.67.1 | |
override: true | |
components: rustfmt, clippy | |
- name: Build | |
run: cargo build | |
- name: Test | |
run: cargo test -- --skip uci_packets | |
- name: Fmt | |
run: cargo fmt --check --quiet | |
- name: Clippy | |
run: cargo clippy --no-deps -- --deny warnings |