Skip to content

Commit

Permalink
Fix action folders
Browse files Browse the repository at this point in the history
  • Loading branch information
kipparker committed Feb 15, 2024
1 parent e68b021 commit 37bf7a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,28 @@ jobs:
- name: Install authentication dependencies
run: |
python -m pip install --upgrade pip
cd backend
cd authentication
pip install pipenv
pipenv install --dev
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
cd backend
cd authentication
pipenv run ruff .
- name: Install resource dependencies
run: |
cd authentication
cd resource
pip install pipenv
pipenv install --dev
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
cd authentication
cd resource
pipenv run ruff .
- name: Run resource tests
run: |
# stop the build if there are Python syntax errors or undefined names
cd authentication
cd resource
pipenv run pytest .
# - name: Run tests
# run: |
Expand Down

0 comments on commit 37bf7a3

Please sign in to comment.