Skip to content

Commit

Permalink
Improve testing
Browse files Browse the repository at this point in the history
Test all operators on BooleanFunctions with 3 variables
  • Loading branch information
nhusung committed Mar 7, 2024
1 parent 953a47a commit e24ed84
Show file tree
Hide file tree
Showing 3 changed files with 373 additions and 36 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,15 @@ jobs:
strategy:
matrix:
toolchain: ['stable', 'nightly']
flags: ['', '--release']

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: Build
run: cargo build --verbose
run: cargo build ${{ matrix.flags }} --verbose
- name: Run Tests
run: cargo test --verbose
run: cargo test ${{ matrix.flags }} --verbose

Loading

0 comments on commit e24ed84

Please sign in to comment.