From f0c5261e7b5046d8e6d14ed6b65870fb305a2c59 Mon Sep 17 00:00:00 2001 From: Lawrence Date: Tue, 24 Feb 2026 10:05:25 +0000 Subject: [PATCH] Add Gitea CI build workflow --- .gitea/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..5ed9c3f --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -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