README.md: Fix typo in Johnathan Nightingale's name #111
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: beep build CI | |
on: | |
push: | |
branches: [ main, master ] | |
pull_request: | |
branches: [ main, master ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: create local.mk | |
run: | | |
echo "prefix = ${PWD}/_root" > local.mk | |
- name: make | |
run: make | |
- name: 'beep --help' | |
run: | | |
./beep --help > beep-usage.from--help | |
diff -u beep-usage.txt beep-usage.from--help | |
- name: 'make check' | |
run: make check | |
- name: 'make install-nobuild' | |
run: make install-nobuild | |
- name: 'list installed files' | |
run: (cd "$PWD/_root" && ls -l $(find . -type f | env LC_ALL=C sort) | nl) |