Skip to content

Commit

Permalink
ci: Fix action step name formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
b-butler committed Jan 24, 2024
1 parent 98ee45c commit 744b928
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/install-nopython-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ description: Installs system packages needed to build dupin.
runs:
using: "composite"
steps:
- install-dependencies-linux:
- name: install-dependencies-linux:
if: runner.os == 'Linux'
shell: bash
run: sudo apt-get install tbb tbblib eigen3 ninja
- install-dependencies-macos:
- name: install-dependencies-macos:
if: runner.os == 'macOS'
shell: bash
run: brew install tbb eigen3 ninja
- install-dependencies-windows:
- name: install-dependencies-windows:
if: runner.os == 'Windows'
shell: bash
run: choco install tbb eigen3 ninja

0 comments on commit 744b928

Please sign in to comment.