Skip to content

Merge pull request #46 from chrisgavin/make-sure-file-exists #86

Merge pull request #46 from chrisgavin/make-sure-file-exists

Merge pull request #46 from chrisgavin/make-sure-file-exists #86

Workflow file for this run

name: Checks
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-24.04
env:
CGO_ENABLED: 0
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version-file: ./go.mod
- name: Build
run: go build ./...
- name: Test
run: go test ./...