Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build-and-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
with:
mpi: ${{ matrix.mpi }}

- name: Install pkg-config
run: |
brew install pkg-config

- name: Install math libraries (OpenBLAS)
if: matrix.math-libs == 'openblas'
run: |
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,8 @@ jobs:
with:
version: '1'

# Install more recent clang-format from LLVM (match Homebrew v15)
- name: Install clang-format
run: |
wget -O- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository 'deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-15 main'
sudo apt-get update -q
sudo apt-get install -y clang-format-15

- name: Check style
Expand Down