Skip to content

Allow use of an existing *pgxpool.Pool instance #27

Allow use of an existing *pgxpool.Pool instance

Allow use of an existing *pgxpool.Pool instance #27

Workflow file for this run

name: Go
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready --health-interval 10s --health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- uses: actions/checkout@v2
- name: Run Unit tests
run: go test -v ./...
env:
PG_CONN: postgresql://postgres:postgres@127.0.0.1:5432/postgres?sslmode=disable
semantic-release:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run semantic-release
if:
github.repository == 'pckhoi/casbin-pgx-adapter' && (github.event_name
== 'push' || (github.event_name == 'pull_request' &&
github.event.action == 'closed' && github.event.pull_request.merged ==
true))
run: |
npm install --save-dev semantic-release@17.2.4
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}