Skip to content

regression: put the unwind check back (#47) #19

regression: put the unwind check back (#47)

regression: put the unwind check back (#47) #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: 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 valgrind
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
- name: Run tests
run: cargo nextest run
- name: Check for memory leaks
run: scripts/check-memory-leaks.sh
- name: Run doc tests
run: cargo test --doc