Skip to content

Update Go version to 1.23.5 #91

Update Go version to 1.23.5

Update Go version to 1.23.5 #91

Workflow file for this run

name: Tests
# Defines environmental variables
env:
GO_VERSION: '1.22.2'
on:
pull_request:
branches:
- main
jobs:
build:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-13, windows-latest]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# Setup Go
- name: Setup Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: "${{ env.GO_VERSION }}"
- name: Go fmt
run: go fmt ./...
- name: Build and Run
run: |
go build -o festerize main.go
./festerize
- name: Test with the Go CLI
run: go test