Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-desroches committed Jul 20, 2024
1 parent 39327b7 commit a4bd7c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
run:
python -m pip install -r requirements.txt
- name: Installing ubuntu requirements
if: startsWith(${{ matrix.os }}, 'ubuntu')
if: ${{startsWith(matrix.os, 'ubuntu')}}
run:
sudo apt-get install -y --no-install-recommends clang libeigen3-dev
- name: Installing macos requirements
if: startsWith(${{ matrix.os }}, 'macos')
if: ${{startsWith(matrix.os, 'macos')}}
run:
brew install eigen && brew install --cask gcc-arm-embedded && brew install gcc@13
- name: Building
Expand All @@ -53,11 +53,11 @@ jobs:
with:
python-version: ${{ matrix.python }}
- name: Installing ubuntu requirements
if: startsWith(${{ matrix.os }}, 'ubuntu')
if: ${{startsWith(matrix.os, 'ubuntu')}}
run:
sudo apt-get install -y --no-install-recommends clang libeigen3-dev
- name: Installing macos requirements
if: startsWith(${{ matrix.os }}, 'macos')
if: ${{startsWith(matrix.os, 'macos')}}
run:
brew install eigen && brew install --cask gcc-arm-embedded && brew install gcc@13
- name: Installing rednose
Expand Down

0 comments on commit a4bd7c0

Please sign in to comment.