add animated demo GIF as README hero #4
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: shellcheck | |
| # gate on real issues (warning+error); info-level style varies by shellcheck version | |
| run: shellcheck --severity=warning keypop test-parse.sh test-behavior.sh | |
| - name: parser tests | |
| run: ./test-parse.sh | |
| - name: behavior tests | |
| run: ./test-behavior.sh |