fix(sycl): Replaces pragma once with include guards #7361
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Style | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-24.04] | |
compiler: [clang] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Environment setup | |
uses: actions/checkout@v4 | |
- 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/noble/ llvm-toolchain-noble-18 main' | |
sudo apt update && sudo apt install clang-format-18 | |
- name: C style | |
env: | |
CC: ${{ matrix.compiler }} | |
FC: gfortran-11 | |
run: | | |
make info | |
make format-c -j2 CLANG_FORMAT=clang-format-18 && git diff --exit-code |