Skip to content

fix: update golang version to 1.23 #101

fix: update golang version to 1.23

fix: update golang version to 1.23 #101

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: build
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.23
- run: go build ./...
test:
runs-on: ubuntu-latest
name: test
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.23
- run: go test ./...