diff --git a/.github/workflows/build_on_push_pr.yml b/.github/workflows/build_on_push_pr.yml index 85dbcb9..af15ef1 100644 --- a/.github/workflows/build_on_push_pr.yml +++ b/.github/workflows/build_on_push_pr.yml @@ -17,13 +17,13 @@ jobs: uses: Ultimaker/embedded-workflows/.github/workflows/shellcheck.yml@main secrets: inherit - # Flake8: - # name: 'Test' - # needs: Prepare - # uses: Ultimaker/python-quality-control/.github/workflows/flake8.yml@master - # with: - # PARENT_BRANCH: 'main' - # secrets: inherit + Flake8: + name: 'Test' + needs: Prepare + uses: Ultimaker/python-quality-control/.github/workflows/flake8.yml@master + with: + PARENT_BRANCH: 'main' + secrets: inherit MyPy: name: 'Test' @@ -33,13 +33,13 @@ jobs: PARENT_BRANCH: 'main' secrets: inherit - # PyCodeStyle: - # name: 'Test' - # needs: Prepare - # uses: Ultimaker/python-quality-control/.github/workflows/pycodestyle.yml@master - # with: - # PARENT_BRANCH: 'main' - # secrets: inherit + PyCodeStyle: + name: 'Test' + needs: Prepare + uses: Ultimaker/python-quality-control/.github/workflows/pycodestyle.yml@master + with: + PARENT_BRANCH: 'main' + secrets: inherit Vulture: name: 'Test' @@ -63,7 +63,7 @@ jobs: Release_Package: name: 'Release' - needs: [Prepare, Shellcheck, Build, MyPy, Vulture, PyTest] + needs: [Prepare, Shellcheck, Build, Flake8, MyPy, PyCodeStyle, Vulture, PyTest] if: ${{ (success() && needs.Prepare.outputs.RELEASE_REPO != 'none') || (failure() && needs.Build.result == 'success' && needs.Prepare.outputs.RELEASE_REPO == 'packages-dev') }} uses: Ultimaker/embedded-workflows/.github/workflows/release_pkg.yml@main