Skip to content

fix: fix cargo toml dependency #677

fix: fix cargo toml dependency

fix: fix cargo toml dependency #677

Workflow file for this run

name: Testing
on:
- pull_request
jobs:
test:
strategy:
matrix:
os:
# - ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code and submodule
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo test
run: cargo test --release --all-features