From 8b77b5acc8e2c99aa8534a51082fbabc03232439 Mon Sep 17 00:00:00 2001 From: Colin Henry Date: Fri, 26 Apr 2024 23:20:51 -0700 Subject: [PATCH] added gitea action --- .gitea/workflows/build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..1ce8a84 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,18 @@ +name: Go +on: [push] +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + go-version: [ '1.19' ] + steps: + - uses: actions/checkout@v4 + - name: Setup Go ${{ matrix.go-version }} + uses: actions/setup-go@v4 + with: + go-version: ${{ matrix.go-version }} + - name: Build + run: go build -v ./... + - name: Test + run: go test \ No newline at end of file