chore(deps): bump github.com/prometheus/client_golang from 1.20.3 to 1.20.4 in the go_modules group across 1 directory #103
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Regression Tests | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
run-regression-test-on-sqlite: | |
if: > | |
(github.event_name == 'workflow_dispatch') || | |
(github.event_name == 'pull_request_target' && github.event.label.name == 'regression-tests') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref || github.ref }} | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Run Integration Tests on SQLite | |
run: go test -v -tags regression -run TestApplicationIntegration ./regressiontests -dbEngine=sqlite | |
run-regression-test-on-postgres: | |
if: > | |
(github.event_name == 'workflow_dispatch') || | |
(github.event_name == 'pull_request_target' && github.event.label.name == 'regression-tests') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref || github.ref }} | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Run Integration Tests on PostgreSQL | |
run: go test -v -tags regression -run TestApplicationIntegration ./regressiontests -dbEngine=postgres |