Add wasm-bindgen v0.2 handles for web_sys::HtmlCanvasElement and web_sys::OffscreenCanvas #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
env: | |
RUST_BACKTRACE: 1 | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: "-Cdebuginfo=0 --deny=warnings" | |
RUSTDOCFLAGS: "--deny=warnings" | |
jobs: | |
fmt: | |
name: Check Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: hecrj/setup-rust-action@v1 | |
with: | |
rust-version: stable | |
components: rustfmt | |
- name: Check Formatting | |
run: cargo fmt --all -- --check | |
tests: | |
name: Tests | |
# `raw-window-handle` only has `cfg` guards for Android, so we just run Ubuntu | |
# and manually test Android | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust_version: ["1.64", stable, nightly] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: hecrj/setup-rust-action@v1 | |
with: | |
rust-version: ${{ matrix.rust_version }} | |
- run: rustup target add wasm32-unknown-unknown | |
- name: Check documentation | |
run: cargo doc --no-deps --document-private-items | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Run tests | |
run: cargo hack test --feature-powerset | |
- name: Run tests for wasm32-unknown-unknown | |
run: cargo hack check --target wasm32-unknown-unknown --feature-powerset |