Skip to content

chore: hacky test and ci #1

chore: hacky test and ci

chore: hacky test and ci #1

Workflow file for this run

name: Rust Check Format and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check-format-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check
- name: Test
run: cargo test -- --nocapture