From 28aba24504684f56a6e51d0956425a69faf0f474 Mon Sep 17 00:00:00 2001 From: Privat33r-dev Date: Sat, 10 Aug 2024 14:46:43 +0200 Subject: [PATCH] Move custom action inside --- .github/actions/poetry-setup/action.yml | 54 +++++++++++++++++++++++++ .github/workflows/cd.yml | 2 +- .github/workflows/tests.yml | 6 +-- 3 files changed, 58 insertions(+), 4 deletions(-) create mode 100644 .github/actions/poetry-setup/action.yml diff --git a/.github/actions/poetry-setup/action.yml b/.github/actions/poetry-setup/action.yml new file mode 100644 index 0000000..5cba405 --- /dev/null +++ b/.github/actions/poetry-setup/action.yml @@ -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 diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 6f82238..510e54d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -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 }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02f0db7..a749856 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 }} @@ -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 }} @@ -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 }}