Add initial CI workflow

This commit is contained in:
Josh Thomas 2024-10-12 15:31:30 -05:00 committed by GitHub
parent d69f67b74d
commit d0c4f1d02b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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

@ -0,0 +1,20 @@
name: test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose