33 push :
44 branches :
55 - " main"
6+ - " test-pixi-dust"
67 pull_request :
78 branches :
89 - " main"
@@ -20,11 +21,11 @@ jobs:
2021 detect-ci-trigger :
2122 name : detect ci trigger
2223 runs-on : ubuntu-latest
23- if : |
24- github.repository == 'pydata/xarray'
25- && (github.event_name == 'push' || github.event_name == 'pull_request')
24+ # if: |
25+ # github.repository == 'pydata/xarray'
26+ # && (github.event_name == 'push' || github.event_name == 'pull_request')
2627 outputs :
27- triggered : ${{ steps.detect-trigger.outputs.trigger-found }}
28+ triggered : false
2829 steps :
2930 - uses : actions/checkout@v5
3031 with :
@@ -125,14 +126,14 @@ jobs:
125126 run : |
126127 pixi run -e ${{env.PIXI_ENV}} python -m mypy --install-types --non-interactive --cobertura-xml-report mypy_report
127128
128- - name : Upload mypy coverage to Codecov
129- uses : codecov/codecov-action@v5.5.1
130- with :
131- file : mypy_report/cobertura.xml
132- flags : mypy
133- # env_vars: PYTHON_VERSION
134- name : codecov-umbrella
135- fail_ci_if_error : false
129+ # - name: Upload mypy coverage to Codecov
130+ # uses: codecov/codecov-action@v5.5.1
131+ # with:
132+ # file: mypy_report/cobertura.xml
133+ # flags: mypy
134+ # # env_vars: PYTHON_VERSION
135+ # name: codecov-umbrella
136+ # fail_ci_if_error: false
136137
137138 mypy-min :
138139 name : Mypy 3.11
@@ -174,24 +175,24 @@ jobs:
174175 run : |
175176 pixi run -e ${{env.PIXI_ENV}} python -m mypy --install-types --non-interactive --cobertura-xml-report mypy_report
176177
177- - name : Upload mypy coverage to Codecov
178- uses : codecov/codecov-action@v5.5.1
179- with :
180- file : mypy_report/cobertura.xml
181- flags : mypy-min
182- # env_vars: PYTHON_VERSION
183- name : codecov-umbrella
184- fail_ci_if_error : false
178+ # - name: Upload mypy coverage to Codecov
179+ # uses: codecov/codecov-action@v5.5.1
180+ # with:
181+ # file: mypy_report/cobertura.xml
182+ # flags: mypy-min
183+ # # env_vars: PYTHON_VERSION
184+ # name: codecov-umbrella
185+ # fail_ci_if_error: false
185186
186187 pyright :
187188 name : Pyright
188189 runs-on : " ubuntu-latest"
189190 needs : [detect-ci-trigger, cache-pixi-lock]
190- if : |
191- always()
192- && (
193- contains( github.event.pull_request.labels.*.name, 'run-pyright')
194- )
191+ # if: |
192+ # always()
193+ # && (
194+ # contains( github.event.pull_request.labels.*.name, 'run-pyright')
195+ # )
195196 defaults :
196197 run :
197198 shell : bash -l {0}
@@ -226,24 +227,24 @@ jobs:
226227 run : |
227228 pixi run -e ${{env.PIXI_ENV}} python -m pyright xarray/
228229
229- - name : Upload pyright coverage to Codecov
230- uses : codecov/codecov-action@v5.5.1
231- with :
232- file : pyright_report/cobertura.xml
233- flags : pyright
234- # env_vars: PYTHON_VERSION
235- name : codecov-umbrella
236- fail_ci_if_error : false
230+ # - name: Upload pyright coverage to Codecov
231+ # uses: codecov/codecov-action@v5.5.1
232+ # with:
233+ # file: pyright_report/cobertura.xml
234+ # flags: pyright
235+ # # env_vars: PYTHON_VERSION
236+ # name: codecov-umbrella
237+ # fail_ci_if_error: false
237238
238239 pyright39 :
239240 name : Pyright 3.11
240241 runs-on : " ubuntu-latest"
241242 needs : [detect-ci-trigger, cache-pixi-lock]
242- if : |
243- always()
244- && (
245- contains( github.event.pull_request.labels.*.name, 'run-pyright')
246- )
243+ # if: |
244+ # always()
245+ # && (
246+ # contains( github.event.pull_request.labels.*.name, 'run-pyright')
247+ # )
247248 defaults :
248249 run :
249250 shell : bash -l {0}
@@ -283,14 +284,14 @@ jobs:
283284 run : |
284285 pixi run -e ${{env.PIXI_ENV}} python -m pyright xarray/
285286
286- - name : Upload pyright coverage to Codecov
287- uses : codecov/codecov-action@v5.5.1
288- with :
289- file : pyright_report/cobertura.xml
290- flags : pyright39
291- # env_vars: PYTHON_VERSION
292- name : codecov-umbrella
293- fail_ci_if_error : false
287+ # - name: Upload pyright coverage to Codecov
288+ # uses: codecov/codecov-action@v5.5.1
289+ # with:
290+ # file: pyright_report/cobertura.xml
291+ # flags: pyright39
292+ # # env_vars: PYTHON_VERSION
293+ # name: codecov-umbrella
294+ # fail_ci_if_error: false
294295
295296 min-version-policy :
296297 name : Minimum Version Policy
0 commit comments