added workflow

This commit is contained in:
Wyatt J. Miller 2023-09-04 16:25:51 -04:00
parent 57f83c430d
commit a845f2bb02

18
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Rust
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose