From 19f277b497507b756128cfed513a08552d248049 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Thu, 2 Dec 2021 10:11:31 +0200 Subject: [PATCH] ci: don't require tests before deploy Usually the tests have already been run by the commit push so this just slows things down. --- .github/workflows/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a59df2ca..3b57573a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -128,7 +128,6 @@ jobs: deploy: if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && github.repository == 'pytest-dev/pytest-django' runs-on: ubuntu-20.04 - needs: [test] steps: - uses: actions/checkout@v2