Skip to content

Redirect from wiki.python.org/moin/X to wiki.python.org/python/X.html #1

Redirect from wiki.python.org/moin/X to wiki.python.org/python/X.html

Redirect from wiki.python.org/moin/X to wiki.python.org/python/X.html #1

Workflow file for this run

name: Test redirects
on:
push:
paths:
- ".github/workflows/redirects.yml"
- "salt/docs/**"
- "salt/moin/**"
- "tests/docs-redirects/**"
- "tests/wiki-redirects/**"
pull_request:
paths:
- ".github/workflows/redirects.yml"
- "salt/docs/**"
- "salt/moin/**"
- "tests/docs-redirects/**"
- "tests/wiki-redirects/**"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
FORCE_COLOR: "1"
jobs:
redirects:
name: Hurl (${{ matrix.suite }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
suite:
- docs-redirects
- wiki-redirects
steps:
- uses: actions/checkout@v6
- name: Download Hurl ${{ env.HURL_VERSION }}
run: >
curl --no-progress-meter --location --fail
--proto '=https' --tlsv1.2
--output '/tmp/hurl.deb'
"https://github.com/Orange-OpenSource/hurl/releases/download/${{ env.HURL_VERSION }}/hurl_${{ env.HURL_VERSION }}_amd64.deb"
env:
HURL_VERSION: "7.1.0"
- name: Install Hurl
run: sudo apt install --yes /tmp/hurl.deb
- name: Run tests
run: bash tests/${{ matrix.suite }}/test.sh