Skip to content

GitHub-first rewrite: initial scaffold #34

GitHub-first rewrite: initial scaffold

GitHub-first rewrite: initial scaffold #34

Workflow file for this run

name: Build & Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.platform }}-latest
steps:
- uses: actions/checkout@v2
- run: rustup default ${{ matrix.channel }}
- run: cargo build --verbose
- run: cargo test --verbose --all
strategy:
matrix:
platform: [ubuntu, macos, windows]
channel: [stable, beta, nightly]