Skip to content

Feat/refactor

Feat/refactor #1160

Workflow file for this run

name: Lint
on:
push:
branches: [ "main", "release/*" ]
pull_request:
branches: [ "main", "release/*" ]
jobs:
numalogic-core:
name: numalogic-core
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libs/numalogic-core
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 23.3"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Ruff
run: |
pip install ruff==0.4.7
ruff check -v .
numalogic-connectors:
name: numalogic-connectors
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libs/numalogic-connectors
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 23.3"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Ruff
run: |
pip install ruff==0.4.7
ruff check -v .
numalogic-registry:
name: numalogic-registry
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libs/numalogic-registry
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 23.3"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Ruff
run: |
pip install ruff==0.4.7
ruff check -v .