Skip to content

Commit

Permalink
Update Python versions in CI/CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
espdev committed Dec 27, 2022
1 parent b7f7cdc commit 2896c1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- ubuntu-latest
- macos-latest
- windows-latest
python-version: [ "3.6", "3.7", "3.8", "3.9" ] # "3.10" -- currently disabled
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]

steps:
- uses: actions/checkout@v2
Expand All @@ -35,13 +35,13 @@ jobs:
run: pytest --color=yes --cov=csaps --cov-report=term

- name: Coveralls
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.9' }}
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' }}
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: false

- name: flake8 Static Analysis
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.9' }}
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' }}
run: flake8 csaps/ tests/ setup.py

docs:
Expand All @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11

- name: Install dependencies
run: |
Expand Down

0 comments on commit 2896c1a

Please sign in to comment.