We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a40b61 commit 44f67e8Copy full SHA for 44f67e8
1 file changed
.github/workflows/ubuntu.yml
@@ -2,6 +2,27 @@ on:
2
workflow_call:
3
4
jobs:
5
+<<<<<<< Updated upstream
6
+=======
7
+ pre-commit:
8
+ runs-on: ubuntu-24.04
9
+ if: github.event_name != 'push'
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ with:
13
+ submodules: recursive
14
+ fetch-depth: 0
15
+ - name: Setup environment
16
+ run: |
17
+ sudo apt-get update
18
+ sudo apt-get install --no-install-recommends -y \
19
+ gcc-14 g++-14 ninja-build python3-pip clang-format-16
20
+ python3 -m pip install -r requirements.txt
21
+ - name: Run pre-commit checks
22
23
+ git fetch origin ${{ github.base_ref }}:${{ github.base_ref }}
24
+ pre-commit run --from-ref ${{ github.base_ref }} --to-ref HEAD
25
+>>>>>>> Stashed changes
26
gcc-build:
27
runs-on: ${{ matrix.os }}
28
strategy:
0 commit comments