Skip to content

Merge pull request #39 from dsh2dsh/dependabot/go_modules/github.com/… #86

Merge pull request #39 from dsh2dsh/dependabot/go_modules/github.com/…

Merge pull request #39 from dsh2dsh/dependabot/go_modules/github.com/… #86

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@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Build
run: make build
- name: Test
run: make test