Skip to content

Commit

Permalink
playing with matrix again
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocat93 committed Sep 17, 2024
1 parent 5985249 commit 8577d6d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ubuntu_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,19 @@ jobs:
run: |
python --version
which python
- name: Check if Poetry is installed
id: check-poetry
run: |
if command -v poetry &> /dev/null; then
echo "::set-output name=poetry_installed::true"
else
echo "::set-output name=poetry_installed::false"
fi
- name: Install Poetry
if: steps.check-poetry.outputs.poetry_installed == 'false'
uses: snok/install-poetry@v1
with:
poetry-version: latest
- name: Check space
run: |
echo "available space: "
Expand Down

0 comments on commit 8577d6d

Please sign in to comment.