Skip to content

test: pass the test with go 1.23 #3

test: pass the test with go 1.23

test: pass the test with go 1.23 #3

Workflow file for this run

---
name: Test
on:
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test ./...