Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
jiajames committed Jun 19, 2024
1 parent d34bf54 commit 627fbba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/py-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./v4-client-py
working-directory: ./v4-client-py-v2
steps:
- name: Check out repository code
uses: actions/checkout@v3
Expand All @@ -27,7 +27,7 @@ jobs:
python-version: 3.11

- name: Install Dependencies
run: pip install -r requirements-lint.txt
run: poetry install

- name: Lint
run: flake8
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./v4-client-py
working-directory: ./v4-client-py-v2
steps:
- name: Check out repository code
uses: actions/checkout@v3
Expand All @@ -47,7 +47,7 @@ jobs:
python-version: 3.11

- name: Install Dependencies
run: sudo pip install -r requirements-test.txt
run: poetry install

- name: Run pytest
run: pytest

0 comments on commit 627fbba

Please sign in to comment.