Skip to content

chore(deps): bump github.com/klauspost/compress from 1.17.10 to 1.17.11 in the go_modules group across 1 directory #111

chore(deps): bump github.com/klauspost/compress from 1.17.10 to 1.17.11 in the go_modules group across 1 directory

chore(deps): bump github.com/klauspost/compress from 1.17.10 to 1.17.11 in the go_modules group across 1 directory #111

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