You've already forked awesomebitcoin.cash
26 lines
567 B
YAML
26 lines
567 B
YAML
|
|
|
|
name: CI
|
|
|
|
# Controls when the action will run. Triggers the workflow on push or pull request
|
|
# events but only for the master branch
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
schedule:
|
|
# Run everyday Sunday at 4:00 UTC
|
|
- cron: "0 4 * * 0"
|
|
|
|
# A workflow to check all markdown links
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
use-quiet-mode: 'no'
|
|
use-verbose-mode: 'yes'
|
|
check-modified-files-only: 'yes'
|