name: Rust on: push: pull_request: jobs: build: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - run: cargo build --verbose rust: name: Lint Rust code runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Cargo fmt run: cargo fmt --all -- --check - name: Cargo clippy run: cargo clippy --workspace --all-targets -- -D warnings - name: Cargo test run: cargo test --workspace