Skip to content

Merge pull request #24 from alessio/dependabot/go_modules/golang.org/… #60

Merge pull request #24 from alessio/dependabot/go_modules/golang.org/…

Merge pull request #24 from alessio/dependabot/go_modules/golang.org/… #60

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Run go generate
run: go generate ./internal/...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Test
run: make check
- name: Test run
run: ./runparts -V