From 251def9b2c15f202ee0f4ead8e211ee1c749a026 Mon Sep 17 00:00:00 2001 From: mayeut Date: Tue, 30 Jan 2024 21:17:17 +0100 Subject: [PATCH] f --- .github/workflows/test.yml | 10 ---------- action.yml | 4 ++-- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b3d9cfa03..75ee4477b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,16 +21,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.x" - - uses: pre-commit/action@v3.0.0 - - name: Check manifest - run: pipx run nox -s check_manifest - - name: PyLint checks - run: | - echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json" - pipx run nox -s pylint test: name: Test cibuildwheel on ${{ matrix.os }} diff --git a/action.yml b/action.yml index d927e8dd9..7039dfa53 100644 --- a/action.yml +++ b/action.yml @@ -34,7 +34,7 @@ runs: - id: pipx run: | '${{ steps.python.outputs.python-path }}' -m venv --without-pip '${{ runner.temp }}/pipx4cibw' - '${{ steps.python.outputs.python-path }}' -m pip install --python '${{ runner.temp }}/pipx4cibw/bin/python' pipx + '${{ steps.python.outputs.python-path }}' -m pip --python '${{ runner.temp }}/pipx4cibw/bin/python' install pipx echo 'pipx-path=${{ runner.temp }}/pipx4cibw/bin/pipx' >> $GITHUB_OUTPUT shell: bash if: runner.os != 'Windows' @@ -42,7 +42,7 @@ runs: - id: pipx-win run: | "${{ steps.python.outputs.python-path }}" -m venv --without-pip "${{ runner.temp }}\pipx4cibw" - "${{ steps.python.outputs.python-path }}" -m pip install --python "${{ runner.temp }}\pipx4cibw\Scripts\python.exe" pipx + "${{ steps.python.outputs.python-path }}" -m pip --python "${{ runner.temp }}\pipx4cibw\Scripts\python.exe" install pipx echo "pipx-path=${{ runner.temp }}\pipx4cibw\Scripts\pipx.exe" >> $GITHUB_OUTPUT shell: pwsh if: runner.os == 'Windows'