Skip to content

Commit ad79a7b

Browse files
committed
chore: run CI on our dev branch too
1 parent 38bb785 commit ad79a7b

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ on:
44
push:
55
branches:
66
- main
7+
- feat-add-pro-backend-fns
78
pull_request:
89
branches:
910
- main
11+
- feat-add-pro-backend-fns
1012

1113
concurrency:
1214
group: ${{ github.workflow }}
@@ -29,16 +31,16 @@ jobs:
2931
- name: Checkout git repo
3032
uses: actions/checkout@v4
3133
with:
32-
submodules: 'recursive'
34+
submodules: "recursive"
3335

3436
- name: Install node
3537
uses: actions/setup-node@v3
3638
with:
37-
node-version-file: '.nvmrc'
39+
node-version-file: ".nvmrc"
3840

3941
- uses: actions/setup-python@v4
4042
with:
41-
python-version: '3.11'
43+
python-version: "3.11"
4244

4345
- name: Add msbuild to PATH
4446
uses: microsoft/[email protected]
@@ -48,7 +50,12 @@ jobs:
4850
shell: bash
4951
run: yarn update_version
5052

51-
5253
- name: build libsession-util-nodejs
5354
shell: bash
5455
run: yarn install --frozen-lockfile
56+
57+
- name: Run clang-tidy
58+
run: clang-tidy -p build src/**/*.cpp
59+
60+
- name: Check formatting
61+
run: clang-format --dry-run --Werror src/**/*.{cpp,hpp}

0 commit comments

Comments
 (0)