Skip to content

Adding coverage (#6) #142

Adding coverage (#6)

Adding coverage (#6) #142

Workflow file for this run

name: test
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, Windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: build
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: test
uses: actions-rs/cargo@v1
with:
command: test