Add Gitea CI build workflow
All checks were successful
ci / build (push) Successful in 3m12s

This commit is contained in:
2026-02-24 10:05:25 +00:00
parent 2f75b75703
commit f0c5261e7b

23
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,23 @@
name: ci
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Build relay
run: cargo build -p relay
- name: Build client
run: cargo build -p client