-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (36 loc) · 1.02 KB
/
format.yaml
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
42
name: Format
on: [push]
jobs:
format-check:
name: 📀 Formatting
runs-on: ubuntu-latest
steps:
# Global part
- name: 🔔 Check out
uses: actions/checkout@v3
# C++ part
- name: 🏗️ 🏃 clang-format
uses: DoozyX/[email protected]
with:
source: ./cxx
extensions: h,c,hxx,cxx
clangFormatVersion: 14
# Python part
- name: 🏗️ python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: ⬇️ Python PDM
uses: pdm-project/setup-pdm@v3
- name: ⬇️ Python Dependencies
run: pdm install
working-directory: ./python
- name: 🚂 Activate environment
run: echo "$(pdm venv --path in-project)/bin" >> $GITHUB_PATH
working-directory: ./python
- name: 🏃 autoflake, isort, black
working-directory: ./python
run: |
autoflake --check .
isort --check .
black --check .