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 Build
on:
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Build workspace
run: cargo build --workspace --all-targets --all-features