Skip to content

Commit

Permalink
run in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
ewdurbin committed Sep 26, 2024
1 parent 2e885a9 commit 730e716
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docs-redirects.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: docs-redirects

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
docs-redirects:
name: Docs Redirects
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: install hurl
run: curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/5.0.1/hurl_5.0.1_amd64.deb && sudo apt install -y ./hurl_5.0.1_amd64.deb

- name: Run Tests
run: bash tests/docs/redirects/run.sh

0 comments on commit 730e716

Please sign in to comment.