Skip to content

Move util tests to utils folder #4

Move util tests to utils folder

Move util tests to utils folder #4

Workflow file for this run

name: Build Debian Package
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Build main project
run: cargo build --release
- name: Build and test examples
run: |
cargo build --examples
- name: Run tests
run: cargo test