From dfae0389b323d1295888fc3815839e9d80ace08d Mon Sep 17 00:00:00 2001 From: Tolleiv Nietsch Date: Thu, 16 May 2024 22:02:43 +0200 Subject: [PATCH] ci: trigger build for every push --- .github/workflows/golang.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/golang.yml diff --git a/.github/workflows/golang.yml b/.github/workflows/golang.yml new file mode 100644 index 0000000..294e859 --- /dev/null +++ b/.github/workflows/golang.yml @@ -0,0 +1,17 @@ +name: Go +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: '1.22.x' + - name: Install dependencies + run: go get . + - name: Build + run: go build -v ./...