Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rzadp authored May 29, 2024
1 parent 262be0c commit 26cc73b
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,20 @@ jobs:
large-packages: false
swap-storage: false

- name: Check if it compiles
id: check-compilation
run: cargo check && cargo test
- name: Build the template
run: cargo build
timeout-minutes: 90

- name: Run clippy
run: |
SKIP_WASM_BUILD=1 cargo clippy --all-targets --locked --workspace --quiet
SKIP_WASM_BUILD=1 cargo clippy --all-targets --all-features --locked --workspace --quiet
timeout-minutes: 20

- name: Run the tests
run: cargo test
timeout-minutes: 30

- name: Build the docs
run: cargo doc --all-features --workspace --no-deps
timeout-minutes: 30

0 comments on commit 26cc73b

Please sign in to comment.