Skip to content

Feat: Add Github Action For Unit Tests #1

Feat: Add Github Action For Unit Tests

Feat: Add Github Action For Unit Tests #1

Workflow file for this run

name: Rust Tests
on:
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run tests
run: cargo test --all