Skip to content

Update db provider pgsql16 image #18

Update db provider pgsql16 image

Update db provider pgsql16 image #18

Workflow file for this run

name: Commit Lint
on: pull_request
permissions:
contents: read
# Optional: allow read access to pull request. Use with 'only-new-issues' option.
# pull-requests: read
jobs:
lint-commits:
name: Lint commits
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: go mod download
- name: Run commitsar
uses: aevea/commitsar@v0.20.1