Skip to content

ci: Use Makefile for the correct build order. #95

ci: Use Makefile for the correct build order.

ci: Use Makefile for the correct build order. #95

Workflow file for this run

name: "Rust: Build & test"
on:
push:
branches:
- "**"
env:
CARGO_TERM_COLOR: always
jobs:
build-rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Build
run: make build
- name: Run tests
run: cargo test --verbose
- name: Run clippy
run: cargo clippy -- -D warnings