Skip to content

CI: Add github CI workflow #1

CI: Add github CI workflow

CI: Add github CI workflow #1

Workflow file for this run

name: CI
on: ["push", "pull_request"]
env:
CARGO_TERM_COLOR: always
jobs:
Test:
runs-on: "ubuntu-latest"
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run tests
run: cargo test --workspace --verbose --all-features --no-fail-fast