Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,17 @@ on:
- main

jobs:
markdown-link-check:
name: Broken markdown links
lychee-link-check:
name: Link check
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v4

- name: Run link check
uses: gaurav-nelson/github-action-markdown-link-check@v1
- name: Link Checker
uses: lycheeverse/lychee-action@v1.8.0
with:
use-quiet-mode: "no"
use-verbose-mode: "yes"
check-modified-files-only: "no"
base-branch: ${{ github.head_ref }}
fail: true

fmt:
name: Formatting (rustfmt)
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Test Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
Expand Down
Loading