From 88f82c457f4c5307265f2af36581e1244fbb71a0 Mon Sep 17 00:00:00 2001 From: Anderson Ignacio da Silva Date: Tue, 18 Jun 2024 23:35:25 +0100 Subject: [PATCH] Update gh scripts Signed-off-by: Anderson Ignacio da Silva --- .github/workflows/run.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run.yaml b/.github/workflows/run.yaml index 95d13f4..550ae73 100644 --- a/.github/workflows/run.yaml +++ b/.github/workflows/run.yaml @@ -18,7 +18,7 @@ jobs: matrix: python-version: - 3.9 - + - '3.10' steps: - name: Check out code uses: actions/checkout@v3 @@ -36,7 +36,9 @@ jobs: tests: runs-on: ubuntu-22.04 needs: lint - + if: | + always() && + (needs.lint.result == 'success') strategy: matrix: python-version: @@ -73,6 +75,9 @@ jobs: name: Build and publish Python 🐍 distributions 📦 to PyPI runs-on: ubuntu-latest needs: tests + if: | + always() && + (needs.tests.result == 'success') steps: - uses: actions/checkout@master - name: Set up Python 3.10