Create rust.yml

This commit is contained in:
Mark 2024-08-10 21:57:00 +02:00 committed by GitHub
parent d83781b7ca
commit 1f39fe0cae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

19
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Rust
on:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose