Skip to content

Commit

Permalink
Merge pull request #101 from CosmWasm/aw/check-links
Browse files Browse the repository at this point in the history
Add CI step to check links validity
  • Loading branch information
aumetra authored Jul 16, 2024
2 parents b1d0b1e + 578cce9 commit fd7158d
Show file tree
Hide file tree
Showing 4 changed files with 764 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check if links are valid

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
link-check:
name: "Check if links are valid"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
link-inspector
- name: Check all external links
working-directory: ./link-inspector
run: cargo run
Loading

0 comments on commit fd7158d

Please sign in to comment.