docs: update

This commit is contained in:
Dylan Araps 2019-09-19 12:26:12 +03:00
parent 4fe65f31d1
commit 9d54e96011
2 changed files with 33 additions and 0 deletions

9
.github/workflows/main.yml vendored Normal file
View file

@ -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
test.sh Executable file
View file

@ -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 "$@"