mirror of
https://github.com/namibia/awesome-shell.git
synced 2024-11-15 01:34:12 +00:00
24 lines
556 B
YAML
24 lines
556 B
YAML
name: GitHub Actions CI
|
|
on:
|
|
push:
|
|
branches: master
|
|
pull_request:
|
|
|
|
jobs:
|
|
check_links:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Check links
|
|
id: lychee
|
|
uses: lycheeverse/lychee-action@v1.0.8
|
|
with:
|
|
args: --verbose --no-progress --exclude wiki.bash-hackers.org/* README.md README_ZH-CN.md
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Check lychee exit code
|
|
run: exit ${{ steps.lychee.outputs.exit_code }}
|