Skip to content

Commit

Permalink
build: fixed type in GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoTartarini committed Mar 18, 2024
1 parent 0cf4be7 commit bacafa4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-publish-testPyPI.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Test and publish Python 🐍 distributions 📦 to Test PyPI
name: Test development branch

on:
push:
Expand All @@ -16,8 +16,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ '3.8', '3.11' ]
platform: [ubuntu-latest]

steps:
- uses: actions/checkout@v3
Expand All @@ -37,7 +37,7 @@ jobs:

# deploy:
#
# needs: build
# needs: test
#
# runs-on: ubuntu-latest
#
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

deploy:

needs: build
needs: test

runs-on: ubuntu-latest

Expand Down

0 comments on commit bacafa4

Please sign in to comment.