Skip to content

Added basic Github workflow build #20 #31

Added basic Github workflow build #20

Added basic Github workflow build #20 #31

Workflow file for this run

name: CI Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Rust
run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Run formatter
run: cargo fmt --check
- name: Run clippy
run: bash scripts/ci/clippy.bash
- name: Run tests
run: cargo test