From ce4d8723efb3750c8c24a362859fd8f727534a26 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sat, 31 Jan 2026 15:36:33 -0500 Subject: [PATCH] gitea actions --- .gitea/workflows/ci.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..92a3722 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,19 @@ +name: Build and Test + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Run Application + run: cargo run --release + + - name: Upload artifacts + uses: actions/upload-artifact@v4 \ No newline at end of file