Skip to content

Commit

Permalink
Move custom action inside
Browse files Browse the repository at this point in the history
  • Loading branch information
Privat33r-dev committed Aug 10, 2024
1 parent 30b7544 commit 28aba24
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 4 deletions.
54 changes: 54 additions & 0 deletions .github/actions/poetry-setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: "Resolve dependencies with Poetry"
description: "Setup Python, install and cache Poetry and resolves dependencies using it."

inputs:
python-version:
description: "Version of Python to setup"
required: true
poetry-version:
description: "Version of Poetry to install"
default: "1.8.2"

runs:
using: "composite"
steps:
- name: Setup Pipx Local Variables
id: pipx-env-setup
run: |
SEP="${{ !startsWith(runner.os, 'windows') && '/' || '\\' }}"
PIPX_CACHE="${{ github.workspace }}${SEP}pipx_cache"
echo "pipx-cache-path=${PIPX_CACHE}" >> $GITHUB_OUTPUT
echo "pipx-version=$(pipx --version)" >> $GITHUB_OUTPUT
echo "PIPX_HOME=${PIPX_CACHE}${SEP}home" >> $GITHUB_ENV
echo "PIPX_BIN_DIR=${PIPX_CACHE}${SEP}bin" >> $GITHUB_ENV
echo "PIPX_MAN_DIR=${PIPX_CACHE}${SEP}man" >> $GITHUB_ENV
echo "${PIPX_CACHE}${SEP}bin" >> $GITHUB_PATH
shell: bash

- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v4
with:
path: |
${{ steps.pipx-env-setup.outputs.pipx-cache-path }}
key: poetry-v${{ inputs.poetry-version }}-${{ runner.os }}-Python${{ inputs.python-version }}

- name: Install Poetry ${{ inputs.poetry-version }}
if: steps.cached-poetry.outputs.cache-hit != 'true'
run: pipx install poetry==${{ inputs.poetry-version }}
shell: bash

- name: Configure Poetry
run: poetry config virtualenvs.in-project true
shell: bash

- name: Setup Python ${{ inputs.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
cache: "poetry"

- name: Install Poetry dependencies
# Should be cached by the action above
run: poetry install
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Python ${{ env.PYTHON_VERSION }} and resolve Poetry dependencies
uses: Privat33r-dev/pymonster@master
uses: ./.github/actions/poetry-setup
with:
python-version: ${{ env.PYTHON_VERSION }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Python ${{ env.PYTHON_VERSION }} and resolve Poetry dependencies
uses: Privat33r-dev/pymonster@master
uses: ./.github/actions/poetry-setup
with:
python-version: ${{ env.PYTHON_VERSION }}

Expand All @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Python ${{ env.PYTHON_VERSION }} and resolve Poetry dependencies
uses: Privat33r-dev/pymonster@master
uses: ./.github/actions/poetry-setup
with:
python-version: ${{ env.PYTHON_VERSION }}

Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Python ${{ env.PYTHON_VERSION }} and resolve Poetry dependencies
uses: Privat33r-dev/pymonster@master
uses: ./.github/actions/poetry-setup
with:
python-version: ${{ env.PYTHON_VERSION }}

Expand Down

0 comments on commit 28aba24

Please sign in to comment.