Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Jan 30, 2024
1 parent 8cfdebc commit 251def9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ 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'

- 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'
Expand Down

0 comments on commit 251def9

Please sign in to comment.