Skip to content

Commit

Permalink
ci: Correctly specify shell for custom action
Browse files Browse the repository at this point in the history
  • Loading branch information
b-butler committed Jan 24, 2024
1 parent 943a6c0 commit 98ee45c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/actions/install-nopython-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ runs:
steps:
- install-dependencies-linux:
if: runner.os == 'Linux'
shell: bash
run: sudo apt-get install tbb tbblib eigen3 ninja
- install-dependencies-macos:
if: runner.os == 'macOS'
shell: bash
run: brew install tbb eigen3 ninja
- install-dependencies-windows:
if: runner.os == 'Windows'
shell: bash
run: choco install tbb eigen3 ninja

0 comments on commit 98ee45c

Please sign in to comment.