Skip to content

Merge pull request #29 from LAA-Software-Engineering/dependabot/go_mo… #88

Merge pull request #29 from LAA-Software-Engineering/dependabot/go_mo…

Merge pull request #29 from LAA-Software-Engineering/dependabot/go_mo… #88

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: [ "main" ]
paths-ignore:
- "**/*.md"
- "CODEOWNERS"
- "Makefile"
pull_request:
branches: [ "main" ]
paths-ignore:
- "**/*.md"
- "CODEOWNERS"
- "Makefile"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -race -cover