Skip to content

chore: specify include in Cargo.toml (via [cargo-diet](https://gith… #27

chore: specify include in Cargo.toml (via [cargo-diet](https://gith…

chore: specify include in Cargo.toml (via [cargo-diet](https://gith… #27

Workflow file for this run

name: Build
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose