From afc8ea34a20eae93b9f155e34fab6755d98347ab Mon Sep 17 00:00:00 2001 From: jtwalsh0 Date: Sun, 5 Jun 2022 13:03:58 -0500 Subject: [PATCH] Remove postgres service from github action [Resolves #899] `testing.postgresql` runs `initdb` locally. The postgres service doesn't get used. --- .github/workflows/test.yaml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5d22fb7f8..d46957e02 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,22 +4,7 @@ on: [push] jobs: build: - runs-on: ubuntu-latest - services: - # Label used to access the service container - postgres: - # Docker Hub image - image: postgres - # Provide the password for postgres - env: - POSTGRES_PASSWORD: postgres - # Set health checks to wait until postgres has started - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 strategy: matrix: python-version: ['3.8', '3.9', '3.10']