Create dev_testing.yml #1

Merged
0xalivecow merged 1 commit from 0xalivecow-patch-1 into dev 2024-10-17 20:52:49 +00:00

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

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