Add GitHub Actions

This commit is contained in:
ErickSkrauch 2023-11-17 04:54:54 +01:00
parent 940b077bd2
commit 87aa380a9d
No known key found for this signature in database
GPG Key ID: 669339FCBB30EE0E

22
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.21
uses: actions/setup-go@v4
with:
go-version: 1.21
cache-dependency-path: go.sum
- name: Install dependencies
run: go get .
- name: Build
run: go build ./...