Skip to content

Commit

Permalink
wkflw: lint
Browse files Browse the repository at this point in the history
Signed-off-by: Avik Basu <ab93@users.noreply.github.com>
  • Loading branch information
ab93 committed Jun 6, 2024
1 parent a1e5d63 commit 4f0bc9d
Showing 1 changed file with 34 additions and 6 deletions.
40 changes: 34 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,48 @@ on:
branches: [ "main", "release/*" ]

jobs:
black:
name: Black format
numalogic-core:
name: numalogic-core
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libs/numalogic-core
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 23.3"

ruff:
- uses: chartboost/ruff-action@v1
with:
version: "0.0.275"
numalogic-connectors:
name: numalogic-connectors
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libs/numalogic-connectors
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 23.3"
- uses: chartboost/ruff-action@v1
with:
version: "0.0.275"
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"
- uses: chartboost/ruff-action@v1
with:
version: "0.0.275"

0 comments on commit 4f0bc9d

Please sign in to comment.