Release v4.1: three-state edge wrapping, delay slider, live cursor pr… #44
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: C Build & Test | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build application | |
| shell: bash | |
| run: make CC=gcc all | |
| - name: Run Unity tests | |
| shell: bash | |
| run: make CC=gcc test |