Skip to content

🏷️ fix: Fix version text #34

🏷️ fix: Fix version text

🏷️ fix: Fix version text #34

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
linters:
name: Lint
strategy:
fail-fast: false
matrix:
python-version: [ 3.12 ]
check: [ruff, blue]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install cppcheck
run: |
sudo apt-get update
sudo apt-get install -y cppcheck
- name: Run cppcheck
run: |
cppcheck --error-exitcode=1 --force --language=c++ src/*.h
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.create false
poetry install
- name: Run Python checks
run: |
task ${{ matrix.check }}