Configure GitHub Actions

This commit is contained in:
Kevin Mehall 2023-10-08 13:25:34 -06:00
parent e77f2c06b6
commit b6e8041915

25
.github/workflows/rust.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose