Skip to content

Running tests on "refs/pull/28/merge" by "WulfGamesYT" #56

Running tests on "refs/pull/28/merge" by "WulfGamesYT"

Running tests on "refs/pull/28/merge" by "WulfGamesYT" #56

name: "Continuous Integration"
run-name: Running tests on "${{ github.ref }}" by "${{ github.actor }}"
on: [push, pull_request, workflow_dispatch]
jobs:
lint-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pip install mdformat-gfm mdformat-frontmatter mdformat-footnote
- run: mdformat --check README.md
check-links:
needs: lint-readme
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check links with lychee
uses: lycheeverse/[email protected]
with:
args: --root-dir "$(pwd)" --accept '200..=204, 403, 429, 500' --no-progress './**/*.md'
fail: true