From 3d8c69e4915ea5f89d48e625dbeb2a22992568dc Mon Sep 17 00:00:00 2001 From: Sam Willcocks Date: Mon, 24 Jun 2024 15:09:36 +0100 Subject: [PATCH] Add gitea action --- .gitea/workflows/main.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/main.yaml diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml new file mode 100644 index 0000000..297d40a --- /dev/null +++ b/.gitea/workflows/main.yaml @@ -0,0 +1,11 @@ +name: Build and test +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: '*' + - run: go build