mirror of
https://github.com/google/santa.git
synced 2026-04-24 03:00:12 -04:00
* Use new Apple docs link for global proxy settings constants * Missed a file... * WIP test workflow change * WIP Fix link * Remove trailing whitespace
21 lines
607 B
YAML
21 lines
607 B
YAML
name: Check Markdown
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**.md"
|
|
|
|
jobs:
|
|
markdown-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Checkout Santa"
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # ratchet:actions/checkout@v4
|
|
- name: "Check for deadlinks"
|
|
uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 # ratchet:lycheeverse/lychee-action@v1
|
|
with:
|
|
fail: true
|
|
- name: "Check for trailing whitespace and newlines"
|
|
if: '!cancelled()'
|
|
run: "! git grep -EIn $'[ \t]+$' -- ':(exclude)*.patch'"
|