Skip to content

Merge pull request #18 from merschformann/merschformann/clean-workflows #116

Merge pull request #18 from merschformann/merschformann/clean-workflows

Merge pull request #18 from merschformann/merschformann/clean-workflows #116

Workflow file for this run

name: build
on: [push]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: git clone
uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
- name: go build
run: go build -v
- name: go test
run: go test -v -cover -coverpkg=./... -race ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.63.4