Skip to content

Restructure the user documentation #128

Restructure the user documentation

Restructure the user documentation #128

Workflow file for this run

name: Style checking
on:
pull_request:
push:
branches:
- develop
- main
jobs:
markdown_linting:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Run mdl
uses: actionshub/markdownlint@main
python_linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10.10'
- name: "Install style checker"
run: pip install --user black~=22.12
- name: "Run style check"
run: black --check .
cpp_linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run format check
run: |
sudo apt-get install clang-format-14
./scripts/format/run-clang-format.sh