Skip to content

Commit

Permalink
Specify the correct working directory for the CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-noaa committed Oct 14, 2022
1 parent 2de7efc commit d79b1a6
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/api.yaml
Expand Up @@ -32,7 +32,9 @@ jobs:
python-version: '3.9'
cache: 'poetry'
cache-dependency-path: 'services/api/poetry.lock'
- run: poetry env use 3.9
- name: Force Poetry to the correct Python version
working-directory: services/api
run: poetry env use 3.9
- name: Install dependencies
working-directory: services/api
run: poetry install
Expand All @@ -53,7 +55,9 @@ jobs:
python-version: '3.9'
cache: 'poetry'
cache-dependency-path: 'services/api/poetry.lock'
- run: poetry env use 3.9
- name: Force Poetry to the correct Python version
working-directory: services/api
run: poetry env use 3.9
- name: Install dependencies
working-directory: services/api
run: poetry install
Expand All @@ -71,7 +75,9 @@ jobs:
python-version: '3.9'
cache: 'poetry'
cache-dependency-path: 'services/api/poetry.lock'
- run: poetry env use 3.9
- name: Force Poetry to the correct Python version
working-directory: services/api
run: poetry env use 3.9
- name: Install dependencies
working-directory: services/api
run: poetry install
Expand Down

0 comments on commit d79b1a6

Please sign in to comment.