Skip to content

Commit

Permalink
ci: check that stubbed implementation compiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrmaxmeier committed Aug 5, 2021
1 parent 1737816 commit 8a0b9d3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,27 @@ jobs:
- name: Run tests
run: cargo test

check-stub:
runs-on: ubuntu-18.04
strategy:
matrix:
target:
- wasm32-unknown-unknown
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
target: ${{ matrix.target }}
override: true

- name: Run check
run: cargo check --all-targets --target ${{ matrix.target }}

test-msrv:
runs-on: ubuntu-18.04
steps:
Expand Down

0 comments on commit 8a0b9d3

Please sign in to comment.