瀏覽代碼

Update validate_links action

pull/3011/head
Matheus Felipe 2 年之前
父節點
當前提交
75e1d2e44f
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: AA785C523274872F
共有 1 個文件被更改,包括 11 次插入6 次删除
  1. +11
    -6
      .github/workflows/validate_links.yml

+ 11
- 6
.github/workflows/validate_links.yml 查看文件

@@ -3,20 +3,25 @@ name: "Validate links"
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- master

env:
FORMAT_FILE: README.md

jobs:
test:
name: 'Validate links'
validate_links:
name: 'Check all links are working'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'

- name: Install dependencies
run: python -m pip install -r scripts/requirements.txt

- name: Validate all links from README.md
run: build/validate_links.py ${FORMAT_FILE}
run: python scripts/validate/links.py ${FORMAT_FILE}

Loading…
取消
儲存