1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-20 19:57:45 +00:00

Run cargo test on the CI

This commit is contained in:
Joshua Goins 2024-04-23 19:17:47 +00:00
parent 8275e85e46
commit a51792bbe0

22
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Main
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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