Skip to content

Update click-extra[sphinx] requirement from ~=4.8.3 to ~=4.10.0 #666

Update click-extra[sphinx] requirement from ~=4.8.3 to ~=4.10.0

Update click-extra[sphinx] requirement from ~=4.8.3 to ~=4.10.0 #666

Workflow file for this run

---
name: Build & release
"on":
# Target are chosen so that all commits get a chance to have their build tested.
push:
branches:
- main
pull_request:
jobs:
release:
uses: kdeldycke/workflows/.github/workflows/[email protected]
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
test-binaries:
needs: release
strategy:
matrix: ${{ fromJSON(needs.release.outputs.nuitka_matrix) }}
runs-on: ${{ matrix.os }}
steps:
- name: Download artifacts
uses: actions/[email protected]
id: artifacts
with:
name: ${{ matrix.bin_name }}
- name: Set binary permissions
if: runner.os != 'Windows'
run: |
chmod +x ${{ steps.artifacts.outputs.download-path }}/${{ matrix.bin_name }}
- name: Run mdedup --version
run: |
${{ steps.artifacts.outputs.download-path }}/${{ matrix.bin_name }} --version
- name: Run mdedup --help
run: |
${{ steps.artifacts.outputs.download-path }}/${{ matrix.bin_name }} --help