Skip to content

Add an action for testing #1

Add an action for testing

Add an action for testing #1

Workflow file for this run

name: Run Tests
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --profile dev
- name: Run Tests
run: cargo test --profile dev