From 0397abbc982a6e17a40afb3468abefc5db43d992 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Wed, 16 Aug 2023 09:01:32 +0200 Subject: [PATCH] Add actions file --- .gitea/workflows/pull_request.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/pull_request.yaml diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml new file mode 100644 index 0000000..613e304 --- /dev/null +++ b/.gitea/workflows/pull_request.yaml @@ -0,0 +1,16 @@ +name: Gavania Merge Build +run_name: Test successful gavania build on merge request + +on: + pull_request: + types: [opened, reopened, edited, review_requested, synchronize] + +jobs: + build: + steps: + - uses: https://github.com/actions/checkout@v3 + + - uses: https://github.com/dtolnay/rust-toolchain@stable + + - name: Build + run: cargo build