Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
feat: Run linting tests in github-actions
  • Loading branch information
jubnzv committed Dec 23, 2023
commit 2d7fe55b4201313e372cdfab8ad89e9589f8b5d9
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ jobs:
for crate in ${ALSO_WASM_CRATES}; do
cargo check --verbose --no-default-features --target wasm32-unknown-unknown \
--manifest-path ./crates/${crate}/Cargo.toml;
done
done

- name: Check RISCV
if: ${{ matrix.type == 'RISCV' }}
Expand All @@ -238,7 +238,7 @@ jobs:
for crate in ${ALSO_WASM_CRATES}; do
cargo check --verbose --no-default-features --target $RISCV_TARGET -Zbuild-std="core,alloc" \
--manifest-path ./crates/${crate}/Cargo.toml;
done
done

dylint:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -353,6 +353,7 @@ jobs:
run: |
cargo test --verbose --all-features --no-fail-fast --workspace --locked
cargo test --verbose --all-features --no-fail-fast --workspace --doc --locked
pushd linting && cargo test --verbose --all-features --no-fail-fast --workspace --locked && popd

docs:
runs-on: ubuntu-latest
Expand Down