Skip to content

ci: Test build on GR 3.10.7.0 #97

ci: Test build on GR 3.10.7.0

ci: Test build on GR 3.10.7.0 #97

Workflow file for this run

name: Formatting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Install dependencies
run: python3 -m pip install flake8 yapf isort
- name: Lint with flake8
run: flake8 . --exclude docs/doxygen/
- name: Check Python formatting
run: yapf --diff --recursive --verbose apps/ python/
- name: Check Python imports
run: isort --check-only apps/ python/
- name: Check C++ formatting
uses: DoozyX/clang-format-lint-action@v0.16.1
with:
clangFormatVersion: 16