1
0
mirror of https://github.com/namibia/awesome-shell.git synced 2024-05-28 09:50:48 +00:00
awesome-shell/.github/workflows/ci.yml

24 lines
556 B
YAML
Raw Normal View History

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
2022-02-21 14:01:18 +00:00
uses: lycheeverse/lychee-action@v1.3.0
2021-06-09 01:44:10 +00:00
with:
2022-02-21 14:01:18 +00:00
args: README.md README_ZH-CN.md --verbose --no-progress --exclude wiki.bash-hackers.org/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check lychee exit code
run: exit ${{ steps.lychee.outputs.exit_code }}