interactive-clap/.github/workflows/tests.yml
FroVolod e917d5584f
ci: Added "cargo test" command (#33)
Resolves #32

Co-authored-by: FroVolod <frol_off@meta.ua>
2025-01-07 23:41:55 +02:00

22 lines
397 B
YAML

name: Tests
on:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
tests:
name: Tests
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Tests
run: cargo test --workspace