Merge pull request #1 from 0xalivecow/0xalivecow-patch-1

Create dev_testing.yml
This commit is contained in:
An0nymous 2024-10-17 22:52:49 +02:00 committed by GitHub
commit 2f7527e803
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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