Skip to content

feat(test): add an cli option for enabling interactive prompt when te… #48

feat(test): add an cli option for enabling interactive prompt when te…

feat(test): add an cli option for enabling interactive prompt when te… #48

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose