Skip to content

Fix test on MacOS

Fix test on MacOS #20

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features