Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,19 @@ jobs:
workspaces: rust -> target
- name: Run workspace clippy
run: cargo clippy --workspace

claw-analog:
name: claw-analog (test + clippy -p)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
workspaces: rust -> target
- name: cargo test -p claw-analog
run: cargo test -p claw-analog
- name: cargo clippy -p claw-analog --no-deps
run: cargo clippy -p claw-analog --no-deps
Loading