Skip to content

Bump golang from 1.22 to 1.23 #68

Bump golang from 1.22 to 1.23

Bump golang from 1.22 to 1.23 #68

Workflow file for this run

name: Go Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.20', '1.21', '1.22' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go build cmd/dht22-exporter/dht22-exporter.go
env:
CGO_ENABLED: "0"