Skip to content

Bump github.com/lib/pq from 1.3.1-0.20200116171513-9eb3fc897d6f to 1.10.9 #301

Bump github.com/lib/pq from 1.3.1-0.20200116171513-9eb3fc897d6f to 1.10.9

Bump github.com/lib/pq from 1.3.1-0.20200116171513-9eb3fc897d6f to 1.10.9 #301

Workflow file for this run

name: PR
on:
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
args: --timeout 5m
only-new-issues: true
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.x"
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make test
- name: uncommitted changes?
if: ${{ always() }}
run: git diff --exit-code --stat