2
0

rename module

This commit is contained in:
2024-05-07 09:31:16 +03:00
parent 4a01ebf23c
commit fb6b7c9637
4 changed files with 9 additions and 30 deletions
-24
View File
@@ -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 ./...
-3
View File
@@ -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`).
+8 -2
View File
@@ -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
)
+1 -1
View File
@@ -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"
)