From be4f3e7df192f7caf44fb658d227df4e8052488b Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 6 Jan 2024 16:25:25 +0000 Subject: [PATCH] fix(workflow): please --- .forgejo/workflows/action.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/action.yaml b/.forgejo/workflows/action.yaml index a5a3a6a..2df1d6a 100644 --- a/.forgejo/workflows/action.yaml +++ b/.forgejo/workflows/action.yaml @@ -2,7 +2,7 @@ name: Push documentation to Meli and run Pylint on: [push, pull_request] jobs: - setup: + Setup: runs-on: docker strategy: matrix: @@ -15,7 +15,7 @@ jobs: with: node-version: "12" - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install Poetry @@ -27,8 +27,8 @@ jobs: poetry config virtualenvs.create false poetry install --with docs --with dev --no-root - build-documentation: - needs: setup + Build Documentation and push to Meli: + needs: Setup runs-on: docker steps: - name: Build the documentation @@ -45,8 +45,8 @@ jobs: env: GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }} - pylint: - needs: setup + Lint Code with Pylint: + needs: Setup runs-on: docker steps: - name: Analysing the code with Pylint