Skip to content

mention cargo-dist in README #413

mention cargo-dist in README

mention cargo-dist in README #413

Workflow file for this run

name: Windows
on:
pull_request: {}
push:
branches: master
jobs:
test:
strategy:
matrix:
platform:
- windows-latest
toolchain:
- stable
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
override: true
targets: "wasm32-unknown-unknown"
- name: "Test on the native x86_64-pc-windows-mscv"
run: cargo test --all-features --workspace
- name: "Test when cross-compiling to x86_64-pc-windows-gnu"
env:
AUDITABLE_TEST_TARGET: "x86_64-pc-windows-gnu"
run: cargo test --all-features --workspace