Skip to content

A few fixes, a metric f-ton of tests and CI #2

A few fixes, a metric f-ton of tests and CI

A few fixes, a metric f-ton of tests and CI #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y clang libclang-dev
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Run tests
run: cargo test