From 79f8d8b3a19703bd9db1dd1ea143c46b8f0605d5 Mon Sep 17 00:00:00 2001 From: Laysa Uchoa Date: Fri, 23 Dec 2022 12:41:32 +0100 Subject: [PATCH] Run tests before release (#374) The unit tests aren't ran before release. This commit fixes this to avoid releasing without running the tests. --- .github/workflows/publish-to-pypi.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index edd44cee9..c41928f2a 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -23,6 +23,10 @@ jobs: - name: Setup the Python Environment by installing Poetry uses: ./.github/actions/setup-python-build-env + - name: Code Quality Check + shell: bash + run: make install && make tests + - name: Poetry bump version, build and publish shell: bash run: |