Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mimisavage authored Oct 31, 2024
1 parent a724947 commit 336a338
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,32 +36,28 @@ jobs:
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "export PATH=$HOME/.local/bin:\$PATH" >> $GITHUB_ENV
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
- name: Install dependencies for Data Handler
working-directory: ./apps/data_handler
env:
PATH: ${{ env.PATH }}:$HOME/.local/bin
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry install
- name: Run Tests for Data Handler
working-directory: ./apps/data_handler
env:
PATH: ${{ env.PATH }}:$HOME/.local/bin
run: |
pytest apps/data_handler
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry run pytest apps/data_handler
- name: Install dependencies for Shared
working-directory: ./apps/shared
env:
PATH: ${{ env.PATH }}:$HOME/.local/bin
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry install
- name: Run Tests for Shared
working-directory: ./apps/shared
env:
PATH: ${{ env.PATH }}:$HOME/.local/bin
run: |
pytest apps/shared
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry run pytest apps/shared

0 comments on commit 336a338

Please sign in to comment.