Skip to content

Update actions/setup-go action to v6 (#87) #196

Update actions/setup-go action to v6 (#87)

Update actions/setup-go action to v6 (#87) #196

Workflow file for this run

name: CI
on: push
env:
GO_VERSION: 1.21
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Set up Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: go build -v ./...
- name: Run Tests
run: go test -v ./...