Skip to content

Merge pull request #52 from TheSeamau5/main #454

Merge pull request #52 from TheSeamau5/main

Merge pull request #52 from TheSeamau5/main #454

Workflow file for this run

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