Create rust.yml

automation stuff ig
This commit is contained in:
FantasyPvP
2023-09-01 02:36:02 +01:00
committed by GitHub
parent 403e6ba087
commit 5b45962820
+22
View File
@@ -0,0 +1,22 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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