Skip to content

Bump actions/setup-go from 4 to 5 #51

Bump actions/setup-go from 4 to 5

Bump actions/setup-go from 4 to 5 #51

Workflow file for this run

name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the develop branch
on:
pull_request:
push:
branches: [develop]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: "go.mod"
- name: build
run: go build -v ./...
- name: go test
run: go test -v ./...