Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
channel-priority: strict
python-version: ${{ matrix.python-version }}
python-version: "${{ matrix.python-version }}"
activate-environment: test-environment
environment-file: continuous_integration/environment.yaml
channels: conda-forge
conda-remove-defaults: true
channel-priority: strict

- name: Install unstable dependencies
if: matrix.experimental == true
Expand Down Expand Up @@ -81,7 +83,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
flags: unittests
file: ./coverage.xml
files: ./coverage.xml
env_vars: OS,PYTHON_VERSION,UNSTABLE

- name: Coveralls Parallel
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,27 +75,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download sdist artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: sdist
path: dist
- name: Download wheels artifact - win
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: wheels-win
path: dist
- name: Download wheels artifact - mac
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: wheels-mac
path: dist
- name: Download wheels artifact - ubuntu aarch
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: wheels-ubuntu-aarch
path: dist
- name: Download wheels artifact - ubuntu x86_64
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: wheels-ubuntu-x86_64
path: dist
Expand Down
Loading