Skip to content

Bump go version to 1.23 #83

Bump go version to 1.23

Bump go version to 1.23 #83

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
pull_request_target:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.23
uses: actions/setup-go@v1
with:
go-version: 1.23
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Run the unit tests and check for race conditions
run: make test.report
- name: Run the examples
run: make run.examples
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.61.0
args: --enable gofmt