Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 34 additions & 34 deletions .github/workflows/cpp_linters.yaml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
name: CPPLinters

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
cpplinter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Python Setup
uses: actions/setup-python@v3
with:
python-version: 3.13

- name: Install libraries
run: make python-install-editable

- name: Install pipx
run: |
sudo apt update
sudo apt install pipx
pipx ensurepath
sudo pipx ensurepath --global
- name: Install cpplint
run: pipx install cpplint
- name: Run cpplint
run: cpplint --filter=-whitespace/line_length,-whitespace/parens ./src/app/fast/*
name: CPPLinters
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
cpplinter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Python Setup
uses: actions/setup-python@v3
with:
python-version: 3.13
- name: Install libraries
run: make python-install-editable
- name: Install pipx
run: |
sudo apt update
sudo apt install pipx
pipx ensurepath
sudo pipx ensurepath --global
- name: Install cpplint
run: pipx install cpplint
- name: Run cpplint
run: cpplint --filter=-whitespace/line_length,-whitespace/parens ./src/app/fast/*
64 changes: 32 additions & 32 deletions .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
name: Linters

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Python Setup
uses: actions/setup-python@v3
with:
python-version: 3.13

- name: Install libraries
run: make python-install-editable

- name: mypy
run: mypy ./src

- name: ruff
run: ruff check .

- name: flake8
run: flake8 .
name: Linters
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Python Setup
uses: actions/setup-python@v3
with:
python-version: 3.13
- name: Install libraries
run: make python-install-editable
- name: mypy
run: mypy ./src
- name: ruff
run: ruff check .
- name: flake8
run: flake8 .
Loading
Loading