Skip to content

Commit

Permalink
add install Poetry action
Browse files Browse the repository at this point in the history
  • Loading branch information
franchb committed Aug 23, 2024
1 parent 706c4fa commit 79bec66
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,19 @@ jobs:
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: poetry install --no-interaction --no-root
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install project
run: poetry install --no-interaction
working-directory: ${{ github.workspace }}
- uses: actions/checkout@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run linter
working-directory: ${{ github.workspace }}
run: make lint

tests_linux:
Expand Down

0 comments on commit 79bec66

Please sign in to comment.