Skip to content

Merge pull request #5 from braswelljr/dependabot/github_actions/actio… #55

Merge pull request #5 from braswelljr/dependabot/github_actions/actio…

Merge pull request #5 from braswelljr/dependabot/github_actions/actio… #55

Workflow file for this run

name: Tests
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Check out code
uses: actions/checkout@v4
- name: Restore Go modules cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: go-${{ runner.os }}-${{ hashFiles('go.mod') }}
restore-keys: |
go-${{ runner.os }}-
- name: Download dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Lint
run: go fmt ./...
- name: Test
run: go test -race -v ./...