From f9d3bc433f754b788e2fc5a988f74944239812de Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 4 Nov 2022 10:28:52 -0400 Subject: [PATCH] Remove docker build from test This patch removes the container build from the main python.yml github action that is only supposed to test tox results for commits --- .github/workflows/python.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 22600f8..02b93db 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -1,4 +1,4 @@ -name: Test and Build +name: TOX Test on: [push, pull_request] @@ -20,12 +20,3 @@ jobs: pip install tox tox-gh-actions - name: Test with tox run: tox - - build: - needs: tox - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Build the Docker image - working-directory: ./docker - run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)