Skip to content

Commit

Permalink
fix: python versions as string
Browse files Browse the repository at this point in the history
  • Loading branch information
laszukdawid committed Mar 19, 2024
1 parent 7b76e54 commit 2180cee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci-main-build-test-deploy.yml
Expand Up @@ -2,8 +2,6 @@ name: Upload Python Package

on:
push:
paths:
- PyEMD/__init__.py
branches:
- master

Expand All @@ -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
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/ci-pr-test.yml
@@ -1,9 +1,6 @@
name: Test

on:
push:
branches-ignore:
- $default-branch
pull_request:
paths:
- 'PyEMD/**.py'
Expand Down

0 comments on commit 2180cee

Please sign in to comment.