This repository was archived by the owner on Dec 30, 2024. It is now read-only.
Update README.md to fix some typos and improve wording #666
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: sanity check | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: clone mkiocccentry | |
| run: git clone https://github.com/ioccc-src/mkiocccentry | |
| - name: install jparse | |
| run: cd mkiocccentry && make all && cd jparse && sudo make all install | |
| - name: remove mkiocccentry | |
| run: rm -fr mkiocccentry | |
| - name: make test | |
| run: make test |