Skip to content

Add tests

Add tests #6

Workflow file for this run

name: Rust
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v2
- uses: rust-lang/simpleinfra/github-actions/simple-ci@master
- name: "32-bit cross testing"
run: |
rustup toolchain install nightly
rustup component add miri
cargo +nightly miri test --target i686-unknown-linux-gnu
strategy:
matrix:
os: [ubuntu, windows, macos]