We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b243963 commit f9287d7Copy full SHA for f9287d7
.github/workflows/ci.yml
@@ -65,6 +65,11 @@ jobs:
65
with:
66
environments: "${{ matrix.env }}"
67
68
+ - name: investigate env variables
69
+ run: |
70
+ echo PYTHON_VERSION=$(pixi run -e ${{ matrix.env }} python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))') >> $GITHUB_ENV
71
+ echo RUNNER_OS="${{ matrix.os }}"
72
+
73
- name: import pint-xarray
74
run: |
75
pixi run -e ${{ matrix.env }} python -c 'import pint_xarray'
@@ -78,7 +83,8 @@ jobs:
78
83
- name: Upload code coverage to Codecov
79
84
uses: codecov/[email protected]
80
85
81
- file: ./coverage.xml
86
+ token: "${{ secrets.CODECOV_TOKEN }}"
87
+ files: ./coverage.xml
82
88
flags: unittests
89
env_vars: RUNNER_OS,PYTHON_VERSION
90
name: codecov-umbrella
0 commit comments