From 2180cee5ab74c33c8e4298c09e5fb69ffacb840e Mon Sep 17 00:00:00 2001 From: Dawid Date: Tue, 19 Mar 2024 08:44:10 -0700 Subject: [PATCH] fix: python versions as string --- .github/workflows/ci-main-build-test-deploy.yml | 9 ++++++--- .github/workflows/ci-pr-test.yml | 3 --- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-main-build-test-deploy.yml b/.github/workflows/ci-main-build-test-deploy.yml index fae5698..d640164 100644 --- a/.github/workflows/ci-main-build-test-deploy.yml +++ b/.github/workflows/ci-main-build-test-deploy.yml @@ -2,8 +2,6 @@ name: Upload Python Package on: push: - paths: - - PyEMD/__init__.py branches: - master @@ -13,7 +11,12 @@ jobs: strategy: matrix: - python-version: [3.8, 3.9, 3.10, 3.11, 3.12] + python-version: + - "3.8" + - "3.9" + - "3.10" + - "3.11" + - "3.12" steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ci-pr-test.yml b/.github/workflows/ci-pr-test.yml index 455bf6a..6baed61 100644 --- a/.github/workflows/ci-pr-test.yml +++ b/.github/workflows/ci-pr-test.yml @@ -1,9 +1,6 @@ name: Test on: - push: - branches-ignore: - - $default-branch pull_request: paths: - 'PyEMD/**.py'