-
Notifications
You must be signed in to change notification settings - Fork 45
41 lines (39 loc) · 1.26 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
---
name: Check Style
on:
pull_request:
branches: ["main"]
jobs:
build:
name: Check Style
runs-on: ubuntu-22.04
container: fedora:latest
steps:
- name: Install Dependencies
run: |
dnf -y install gcc meson pkgconf-pkg-config \
git openssl-devel clang-tools-extra \
python3-pip codespell
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup
if: ${{ github.event.pull_request.base.sha }}
run: |
git config --global --add safe.directory \
/__w/pkcs11-provider/pkcs11-provider
git fetch origin main ${{ github.event.pull_request.base.sha }}
- name: Generate Makefile
run: |
meson setup builddir
- name: Run Clang Tidy
run: |
run-clang-tidy \
-checks=-*,readability-braces-around-statements \
-config "{WarningsAsErrors: '*'}" \
-header-filter "src/pkcs11.h" \
-quiet -p builddir
- name: Check the Style
run: make check-style || (make check-style-show; exit -1)
- name: Check spelling
run: codespell --ignore-words-list="sorce,clen,adin" *.md Makefile.am \
configure.ac src tests -S src/pkcs11.h