Skip to content

Commit ce03d45

Browse files
author
Trevor Atkinson
committed
github action go 1.25.7
1 parent e54af05 commit ce03d45

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

.github/workflows/go.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Go
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v5
10+
- name: Setup Go
11+
uses: actions/setup-go@v5
12+
with:
13+
go-version: '1.25.7zz'
14+
- name: Install dependencies
15+
run: go get .
16+
- name: Test with the Go CLI
17+
run: go test -v ./...

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/structx/pgxadapter
22

3-
go 1.25.5
3+
go 1.25.7
44

55
require github.com/jackc/pgx/v5 v5.8.0
66

0 commit comments

Comments
 (0)