tools: github actions: run daily dead link checks and unmaintained projects checks in parallel

This commit is contained in:
nodiscc 2023-07-22 19:04:29 +02:00
parent 05ad5ea709
commit 316e59bcb7
No known key found for this signature in database
GPG key ID: 067FC4266A4B6909

View file

@ -1,4 +1,4 @@
name: link checks
name: dead links and unmaintained projects checks
on:
schedule:
@ -13,6 +13,12 @@ concurrency:
cancel-in-progress: true
jobs:
unmaintained projects checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make awesome_lint
link checks:
runs-on: ubuntu-latest
steps: