Add 'discard_comment' and 'discard_event' methods for better generici… #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TestLib | |
on: [push, workflow_dispatch] | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run lib tests | |
run: cargo test --workspace --verbose -- --nocapture | |
- name: Run lib tests with MIVOT feature | |
run: cargo test --all-features --workspace --verbose -- --nocapture | |