Skip to content

Bump actions/checkout from 3 to 4 #36

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #36

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: |
go test -v ./...