Use separate include for maximum config #147
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
name: Rust | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: -D warnings | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
network: [client, server] | |
# Camera and telescope have some special logic; other devices don't so we pick focuser as a random representative. | |
device: [camera, telescope, focuser] | |
include: | |
# Also make sure that maximum configuration works as expected. | |
- network: client,server | |
device: all-devices | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: taiki-e/install-action@cargo-no-dev-deps | |
- name: Clippy check | |
run: cargo no-dev-deps clippy --all-targets --features ${{ matrix.network }},${{ matrix.device }} |