Skip to content

Commit

Permalink
Merge pull request #46 from OpenZeppelin/amar-fix-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
4meta5 authored Dec 4, 2023
2 parents b84c168 + 46e838c commit 9797d84
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
# Not needed in CI, should make things a bit faster
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
# Remove unnecessary WASM build artefacts
# Remove unnecessary WASM build artifacts
WASM_BUILD_CLEAN_TARGET: 1

jobs:
Expand Down Expand Up @@ -55,13 +55,16 @@ jobs:
- name: install rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: cargo fmt
- name: Check format
run: cargo fmt --all -- --check

- name: cargo test --release --locked
- name: Run tests
run: cargo test

- name: cargo clippy --release --locked
- name: Check build
run: cargo check --release

- name: Check clippy
run: cargo clippy --locked --all-targets -- -D warnings

- name: Check Documentation
Expand Down

0 comments on commit 9797d84

Please sign in to comment.