Create rust.yml

This commit is contained in:
2024-10-08 15:40:03 -04:00
committed by GitHub
Unverified
parent 18ee6cb0f2
commit 0c338bffe7

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

@@ -0,0 +1,24 @@
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Client
run: cd client && cargo build --verbose
- name: Build Server
run: cd ../server && cargo build --verbose
- name: Build Auth Server
run: cd ../auth && cargo build --verbose