Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
srijs committed May 20, 2024
1 parent c1fb6f4 commit b3d3d58
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,27 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update nightly --no-self-update
run: rustup update --no-self-update
- name: Install Cross
run: cargo install --force cross
- name: Test
run: cross test --target=${{ matrix.target }}
- name: Check with no default features
run: cross check --target=${{ matrix.target }} --no-default-features
cross-check:
name: cross-check
runs-on: ubuntu-latest
strategy:
matrix:
target:
- wasm32-unknown-unknown
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update --no-self-update
- name: Add target
run: rustup target add ${{ matrix.target }}
- name: Check
run: cross check --target=${{ matrix.target }}
- name: Check with no default features
run: cross check --target=${{ matrix.target }} --no-default-features

0 comments on commit b3d3d58

Please sign in to comment.