Merge pull request #52 from TheSeamau5/main #454
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: Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
unit_test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: cargo test --workspace --verbose | |
# macos_test: | |
# name: MacOS Tests | |
# runs-on: macos-13 | |
# timeout-minutes: 20 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Build | |
# run: cargo build --verbose | |
# - name: Run tests | |
# run: cargo test --verbose -- --test-threads 1 |