Skip to content

Commit

Permalink
[WIP] Fixed #958 Bump Supported Python Version to 3.12 (#961)
Browse files Browse the repository at this point in the history
* Add python 3.12 to GitHub Actions workflow

* Add reusable workflow

* removed checking out main

* fix typo in the name of yml file

* undo refactoring

* removed a non-existent filename
  • Loading branch information
NimaSarajpoor committed Feb 18, 2024
1 parent 93cee25 commit c435fed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set Up Python
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set Up Python
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
run: ./test.sh coverage
shell: bash
- name: Check Coverage Report
run: coverage report -m --fail-under=100 --skip-covered --omit=setup.py,docstring.py,min.py,stumpy/cache.py
run: coverage report -m --fail-under=100 --skip-covered --omit=docstring.py,min.py,stumpy/cache.py
shell: bash
- name: Upload Coverage Tests Results
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v4

0 comments on commit c435fed

Please sign in to comment.