From 36cab81d6e07d23a7aa66ab042383302909c3499 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Tue, 4 Mar 2025 12:47:22 -0600 Subject: [PATCH] remove entire action --- .github/actions/setup-postgres-linux/action.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .github/actions/setup-postgres-linux/action.yml diff --git a/.github/actions/setup-postgres-linux/action.yml b/.github/actions/setup-postgres-linux/action.yml deleted file mode 100644 index 1c8fc772a8a..00000000000 --- a/.github/actions/setup-postgres-linux/action.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: "Set up postgres (linux)" -description: "Set up postgres service on linux vm for dbt integration tests" -runs: - using: "composite" - steps: - - shell: bash - run: | - sudo systemctl start postgresql.service - pg_isready - sudo -u postgres bash ${{ github.action_path }}/setup_db.sh