diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index bd69985..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: CI - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - test: - name: Test - runs-on: ubuntu-latest - - steps: - - name: Check out code into the Go module directory - uses: actions/checkout@v3 - - - name: Set up Go 1.x - uses: actions/setup-go@v4 - with: - go-version: "stable" - - - name: Test - run: go test -race -v ./... diff --git a/README.md b/README.md index 8131e86..1d00eee 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -[![Go Reference](https://pkg.go.dev/badge/github.com/andoma-go/pgservicefile.svg)](https://pkg.go.dev/github.com/andoma-go/pgservicefile) -[![Build Status](https://github.com/andoma-go/pgservicefile/actions/workflows/ci.yml/badge.svg)](https://github.com/andoma-go/pgservicefile/actions/workflows/ci.yml) - # pgservicefile Package pgservicefile is a parser for PostgreSQL service files (e.g. `.pg_service.conf`). diff --git a/go.mod b/go.mod index 9cd5690..33332d6 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,11 @@ -module github.com/andoma-go/pgservicefile +module git.company.lan/gopkg/pgservicefile -go 1.14 +go 1.21.5 require github.com/stretchr/testify v1.7.0 + +require ( + github.com/davecgh/go-spew v1.1.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect +) diff --git a/pgservicefile_test.go b/pgservicefile_test.go index 74bbaad..2d50f11 100644 --- a/pgservicefile_test.go +++ b/pgservicefile_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/andoma-go/pgservicefile" + "git.company.lan/gopkg/pgservicefile" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" )