Update License
Some checks failed
Cargo Check & Build / Rust project - latest (stable) (push) Has been cancelled

This commit is contained in:
Joshua Higgins
2025-04-08 19:58:16 -04:00
parent 3d1aabc9bc
commit d1e29b1106
4 changed files with 34 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
name: Cargo Check & Build
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo check --verbose
- run: cargo build --verbose