Skip to content

Commit

Permalink
CI workflows use make test to run unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eval-exec committed Oct 7, 2023
1 parent dbc90a5 commit 1d87316
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
os: [ ubuntu-latest, macos-latest, windows-2019 ]
steps:
- uses: actions/checkout@v2
- uses: taiki-e/install-action@nextest
- if: matrix.os == 'windows-2019'
name: Windows Dependencies
run: |
Expand All @@ -65,10 +66,10 @@ jobs:
run: cargo build
- if: matrix.os != 'macos-latest'
name: UnitTest
run: cargo test
run: make test
- if: matrix.os == 'macos-latest'
name: UnitTest
run: cargo test --features portable
run: make test-portable
code_coverage:
name: Code Coverage
needs: [ test ]
Expand Down

0 comments on commit 1d87316

Please sign in to comment.