Skip to content

Merge pull request #13 from steineggerlab/fix #186

Merge pull request #13 from steineggerlab/fix

Merge pull request #13 from steineggerlab/fix #186

Workflow file for this run

on:
push:
branches: ["master"]
name: Test
jobs:
tests_on_multi_os:
name: Run tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run cargo test
run: cargo test -v
- name: Test foldcomp feature
run: cargo test --features foldcomp -v