Skip to content

Commit

Permalink
POC
Browse files Browse the repository at this point in the history
  • Loading branch information
faisal-fawad committed Jul 21, 2024
1 parent 600fd28 commit ab674e5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ jobs:
key: venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
path: .venv
- name: Run tests
run: make test
run: |
poetry config --list
make test
lint:
name: Lint
needs: [build]
Expand All @@ -61,4 +63,6 @@ jobs:
key: venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
path: .venv
- name: Run linter
run: make lint
run: |
poetry config --list
make lint

0 comments on commit ab674e5

Please sign in to comment.