Skip to content

Commit

Permalink
Bump to miniforge and py3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored Nov 11, 2024
1 parent 020b199 commit eb89e19
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, ]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: windows-latest
python-version: "3.12"
python-version: "3.13"
- os: macos-latest
python-version: "3.12"
python-version: "3.13"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: setup_miniconda
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
auto-update-conda: true
channel-priority: flexible
channels: conda-forge
add-pip-as-python-dependency: true
use-mamba: true
miniforge-variant: Mambaforge
miniforge-version: latest

- name: install package deps
run: |
Expand All @@ -67,7 +67,7 @@ jobs:
pytest -v --cov=gridData --cov-report=xml --color=yes ./gridData/tests
- name: codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: github.event_name != 'schedule'
with:
file: coverage.xml
Expand Down

0 comments on commit eb89e19

Please sign in to comment.