Skip to content

Commit

Permalink
Do not run CI commands in login shell (fix macos runner problem)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmens committed Sep 17, 2024
1 parent 27b8914 commit 134caa0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
environments: test-cpu
activate-environment: true
- name: Run pytest
shell: bash -l {0}
shell: bash {0}
run: pixi run -e test-cpu tests
- name: Upload coverage report
if: runner.os == 'Linux' && matrix.python-version == '3.12'
Expand All @@ -53,7 +53,7 @@ jobs:
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
environments: mypy
- name: Run mypy
shell: bash -l {0}
shell: bash {0}
run: pixi run mypy
run-explanation-notebooks:
name: Run explanation notebooks on Python 3.12
Expand All @@ -67,5 +67,5 @@ jobs:
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
environments: test-cpu
- name: Run explanation notebooks
shell: bash -l {0}
shell: bash {0}
run: pixi run -e test-cpu explanation-notebooks

0 comments on commit 134caa0

Please sign in to comment.