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 e2c37a7 commit 6c5a587Copy full SHA for 6c5a587
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ main:
11
+ name: Main pipeline
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version: '3.10'
18
+ cache: 'pip'
19
+ - run: pip install -r python/requirements.txt
20
+ - uses: psf/black@stable
21
+ - name: 'clang-format'
22
+ run: |
23
+ find src include -name '*.cpp' -o -name '*.h' -o -name '*.hpp' | xargs clang-format --Werror -n
24
+ # - name: wheel
25
+ # run: |
26
+ # pip install build
27
+ # python -m build . --wheel
0 commit comments