Skip to content

Commit

Permalink
Add Poetry to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoppmann committed Dec 17, 2022
1 parent 7582f90 commit 9ac330c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci-python3-freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ jobs:
pw useradd runner -u 501 -g staff -d /Users/runner
# Install Poetry
export POETRY_HOME=/opt/poetry
python3 -m venv $POETRY_HOME
$POETRY_HOME/bin/pip install poetry==1.1.15
$POETRY_HOME/bin/poetry --version
# Install test dependencies
pip install pyroma
pip install check-manifest
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci-python3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install Poetry
run: |
export POETRY_HOME=/opt/poetry
python3 -m venv $POETRY_HOME
$POETRY_HOME/bin/pip install poetry==1.1.15
$POETRY_HOME/bin/poetry --version
- name: Install test dependencies
run: |
sudo apt install coreutils cksfv
Expand Down

0 comments on commit 9ac330c

Please sign in to comment.