-
Notifications
You must be signed in to change notification settings - Fork 6
48 lines (39 loc) · 1.08 KB
/
style.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: style
on:
push:
branches: [master]
pull_request:
branches: [master]
defaults:
run:
shell: bash
env:
BUILD_TYPE: Release
jobs:
check-style:
name: Check Style
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
# TODO: remove this step after the default Clang is updated to version 16
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "16.0"
- name: Install GMP and MPFR
run: |
sudo sed -i 's/azure\.//' /etc/apt/sources.list
sudo apt-get update
sudo apt-get install libgmp-dev libmpfr-dev
- name: Configure CMake
working-directory: ${{github.workspace}}
run: cmake -Bbuild -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -Dfintamath_enable_clangformat=ON
env:
CC: gcc
CXX: g++
- name: Run clang-format
working-directory: ${{github.workspace}}
run: cmake --build build --target clangformat_check