From a763e0f44ca2c31caf2dd8bed702e76f63e4db25 Mon Sep 17 00:00:00 2001 From: Yury Frolov Date: Mon, 15 Jan 2024 17:50:47 +0500 Subject: [PATCH] Add GORM regression tests to CI --- .github/workflows/tests.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 852369237..0ae2cde4a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -49,6 +49,17 @@ jobs: POSTGRES_VERSION=14 make regress POSTGRES_VERSION=15 make regress + gorm-regress: + name: Run regression tests with GORM + runs-on: ubuntu-latest + steps: + + - name: Check out code + uses: actions/checkout@v3 + + - name: Run tests + run: make gorm_regress + feature_prepare: name: feature_prepare runs-on: ubuntu-latest