Skip to content

docs: add release checklist and v0.1.0 release notes #4

docs: add release checklist and v0.1.0 release notes

docs: add release checklist and v0.1.0 release notes #4

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --workspace --all-targets
- name: Run Tests
run: cargo test --workspace