Valentin Brandl d0f6d23ce7
Some checks failed
Lint / lint (push) Waiting to run
Build / build (push) Has been cancelled
Build and test pipeline
2024-08-25 16:50:24 +02:00

23 lines
412 B
YAML

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...