Skip to content

Merge pull request #10 from dahag-ag/go-ci #3

Merge pull request #10 from dahag-ag/go-ci

Merge pull request #10 from dahag-ag/go-ci #3

Workflow file for this run

---
name: Build Go
on: [ pull_request, push ]
jobs:
build-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install dependencies
run: go get .
- name: Build
run: go build .