From ebc39410ae5a6f499847ae84f98a6178d060b97b Mon Sep 17 00:00:00 2001 From: Narek Galstyan Date: Sat, 7 Oct 2023 23:19:38 +0000 Subject: [PATCH] Add github action for tests --- .github/workflows/test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 11547b42a..ebd9bf24f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -43,6 +43,12 @@ jobs: env: PG_VERSION: ${{ matrix.postgres }} if: ${{ startsWith(matrix.os, 'ubuntu') }} + - name: Run update tests linux + id: update-test-linux + run: sudo su postgres -c "PG_VERSION=$PG_VERSION python3 ./scripts/test_updates.py -U postgres" + env: + PG_VERSION: ${{ matrix.postgres }} + if: ${{ startsWith(matrix.os, 'ubuntu') }} - name: Run tests mac id: test-mac run: ./ci/scripts/run-tests-mac.sh