Skip to content

feat: add output options for command execution #6

feat: add output options for command execution

feat: add output options for command execution #6

Workflow file for this run

name: Unit Tests
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: unit-tests-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
rustflags: ""
cache: true
cache-key: unit-tests-${{ runner.os }}
- name: Run tests
run: cargo test --locked --all-targets