We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f961a58 commit 7068244Copy full SHA for 7068244
.github/workflows/clang-tools-release.yml
@@ -1,6 +1,7 @@
1
name: Build clang-tools wheels
2
3
on:
4
+
5
workflow_dispatch:
6
inputs:
7
llvm_version:
.github/workflows/pre-commit.yml
@@ -0,0 +1,13 @@
+name: Run pre-commit
+on:
+ push:
+ pull_request:
+ types: opened
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ pre-commit:
13
+ uses: cpp-linter/.github/.github/workflows/pre-commit.yml@main
.pre-commit-config.yaml
@@ -0,0 +1,9 @@
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v6.0.0
+ hooks:
+ - id: trailing-whitespace
+ - id: check-yaml
+ - id: end-of-file-fixer
+ - id: check-added-large-files
+ - id: check-merge-conflict
0 commit comments