Skip to content

Commit 3956b18

Browse files
committed
Add test file for rust-src-dir input
1 parent d147122 commit 3956b18

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci-sub.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Test Suite"
2+
on:
3+
push:
4+
pull_request:
5+
6+
jobs:
7+
formatting:
8+
name: cargo fmt
9+
runs-on: ubuntu-latest
10+
steps:
11+
- run: rustup self uninstall
12+
- uses: actions/checkout@v5
13+
- uses: actions-rust-lang/setup-rust-toolchain@v1
14+
with:
15+
toolchain: stable
16+
components: clippy
17+
rust-src-dir: proj
18+
override: false
19+
- uses: Swatinem/rust-cache@v2
20+
- run: cargo clippy --all-targets --all-features --locked -- -D

0 commit comments

Comments
 (0)