Skip to content

Commit

Permalink
Update gh scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Anderson Ignacio da Silva <anderson@aignacio.com>
  • Loading branch information
aignacio committed Jun 18, 2024
1 parent 67d94a0 commit 88f82c4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
python-version:
- 3.9

- '3.10'
steps:
- name: Check out code
uses: actions/checkout@v3
Expand All @@ -36,7 +36,9 @@ jobs:
tests:
runs-on: ubuntu-22.04
needs: lint

if: |
always() &&
(needs.lint.result == 'success')
strategy:
matrix:
python-version:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 88f82c4

Please sign in to comment.