Merge pull request #12 from teverett/master #1
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: [ '*' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| build-macos: | |
| runs-on: macos-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: nasm | |
| run: brew install nasm | |
| - name: setup | |
| run: ./setup.sh | |
| - name: build | |
| run: ./build.sh | |
| build-ubuntu: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install nasm | |
| run: sudo apt install nasm | |
| - name: setup | |
| run: ./setup.sh | |
| - name: build | |
| run: ./build.sh |