-
Notifications
You must be signed in to change notification settings - Fork 58
feat: Add link checker to Actions #573
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Link Checker | ||
|
||
on: | ||
# This workflow requires pull_request and won't work with pull_request_target | ||
# due to github permissions | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- closed | ||
# Uncomment the following lines to have the cronjob running daily | ||
#repository_dispatch: | ||
#workflow_dispatch: | ||
#schedule: | ||
#- cron: "00 18 * * *" | ||
|
||
jobs: | ||
link-check: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write # required for peter-evans/create-issue-from-file | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Link Checker | ||
id: lychee | ||
uses: lycheeverse/lychee-action@v2 | ||
|
||
with: | ||
args: -b . --verbose --no-progress --exclude '%23.*' './**/*.md' | ||
fail: true | ||
|
||
# Uncomment this if you want issues to be created for every dead link | ||
#- name: Create Issue From File | ||
#if: steps.lychee.outputs.exit_code != 0 | ||
#uses: peter-evans/create-issue-from-file@v5 | ||
#with: | ||
#title: Link Checker Report | ||
#content-filepath: ./lychee/out.md | ||
#labels: report, automated issue |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,13 +12,13 @@ This approach not only secures the verification process of machine learning mode | |
|
||
## Prerequisites | ||
|
||
- An operational [EVM](/tutorials/beaconkit.md) using Rollkit (see next step) | ||
- An operational EVM using Rollkit (see next step) | ||
- A [Sindri](https://sindri.app) API key, which can be obtained [here](https://hen4zp9gxq3.typeform.com/to/hJHlUF8c?typeform-source=sindri.app) | ||
pthmas marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- Python 3.10+ installed as well as the [Sindri Python SDK](https://sindri.app/docs/reference/sdk/python/) (more information below) | ||
|
||
### Setting Up the Polaris EVM using Rollkit | ||
|
||
This walkthrough assumes you started the Polaris EVM using Rollkit and should be interpreted as a direct continuation of this [Polaris EVM and Rollkit guide](https://rollkit.dev/tutorials/polaris-evm). | ||
This walkthrough assumes you started the Polaris EVM using Rollkit and should be interpreted as a direct continuation of this Polaris EVM and Rollkit guide. | ||
|
||
Comment on lines
+21
to
22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Same issue here—broken discovery path. Re-link “Polaris EVM and Rollkit guide” so readers can jump directly. 🤖 Prompt for AI Agents
|
||
### Installing the Sindri Python SDK | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.