We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf3362 commit 0406993Copy full SHA for 0406993
.github/workflows/ci.yml
@@ -5,11 +5,26 @@ on:
5
merge_group:
6
pull_request:
7
jobs:
8
- check:
+ check-cairo:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v4
12
- uses: software-mansion/setup-scarb@v1
13
- run: scarb fmt --check
14
- run: scarb lint
15
- run: scarb test
16
+
17
+ check-rust:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - uses: dtolnay/rust-toolchain@stable
22
+ - uses: Swatinem/rust-cache@v2
23
+ - run: cargo fmt --check
24
+ - run: cargo clippy --all-targets --all-features --workspace --no-deps
25
+ env:
26
+ RUSTFLAGS: "-Dwarnings"
27
+ - run: cargo doc --all-features --workspace --no-deps
28
29
+ RUSTDOCFLAGS: "-Dwarnings"
30
+ - run: cargo test --workspace
0 commit comments