From bacafa4dca5724294ec24d8583c3f240c3affd9e Mon Sep 17 00:00:00 2001 From: federico Tartarini Date: Mon, 18 Mar 2024 10:58:58 +1030 Subject: [PATCH] build: fixed type in GitHub action --- .github/workflows/build-test-publish-testPyPI.yml | 8 ++++---- .github/workflows/build-test-publish.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-test-publish-testPyPI.yml b/.github/workflows/build-test-publish-testPyPI.yml index f89b55d..cae283f 100644 --- a/.github/workflows/build-test-publish-testPyPI.yml +++ b/.github/workflows/build-test-publish-testPyPI.yml @@ -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: @@ -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 @@ -37,7 +37,7 @@ jobs: # deploy: # -# needs: build +# needs: test # # runs-on: ubuntu-latest # diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index 136e731..4da7e8a 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -37,7 +37,7 @@ jobs: deploy: - needs: build + needs: test runs-on: ubuntu-latest