Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
docs: update
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Sep 19, 2019
1 parent 4fe65f3 commit 9d54e96
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Shellcheck
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run shellcheck.
run: ./test.sh
24 changes: 24 additions & 0 deletions test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/sh
# shellcheck source=/dev/null
#
# Tests for the Pure sh Bible.

main() {
trap 'rm -f readme_code test_file' EXIT INT

# Extract code blocks from the README.
while read -r line; do
[ "$code" ] && [ "$line" != \`\`\` ] &&
printf '%s\n' "$line"

case $line in
\`\`\`sh) code=1 ;;
\`\`\`) code=
esac
done < README.md > readme_code

# Run shellcheck and source the code.
shellcheck -s sh readme_code test.sh || exit 1
}

main "$@"

0 comments on commit 9d54e96

Please sign in to comment.