readme: Add link to awesome-bash
#127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions CI | |
on: | |
push: | |
branches: master | |
pull_request: | |
jobs: | |
check_links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check links | |
id: lychee | |
uses: lycheeverse/lychee-action@v1 | |
with: | |
args: README.md README_ZH-CN.md --verbose --no-progress --exclude www.passwordstore.org/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check lychee exit code | |
run: exit ${lychee_exit_code} |