Skip to content

Commit

Permalink
fix: folders to check
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Walker <[email protected]>
  • Loading branch information
anwalker293 authored and dbluhm committed Sep 5, 2023
1 parent 208b30f commit f336176
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/code-quality-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,20 @@ env:

jobs:
format:
name: Format and Lint
name: Format and Lint (Conrollers)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
src: "./acapy-minimal-example"
src: "./controllers"
- uses: chartboost/ruff-action@v1

name: Format and Lint (Examples)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
src: "./examples"
- uses: chartboost/ruff-action@v1

0 comments on commit f336176

Please sign in to comment.