Guessing when to add label padding turns out not that helpful #153
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: Engine automated tests | |
| on: | |
| push: | |
| branches: [master, experimental] | |
| jobs: | |
| test-linux: | |
| runs-on: ubuntu-latest | |
| name: Build and Test Engine package on linux | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.15.2 | |
| - run: sudo apt install -y ffmpeg | |
| - run: zig build test | |
| test-macos: | |
| runs-on: macos-latest | |
| name: Build and Test Engine package on MacOS | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.15.2 | |
| - run: brew install ffmpeg | |
| - run: zig build test | |