removed reduce triples and added start of cas integration into symbolic #481
Workflow file for this run
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 | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: cargo clippy --all-targets -- -D warnings | |
fmt: | |
name: Fmt | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: cargo fmt --all --check | |
# 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 |