add --cut, so a one-off cut needs no sidecar file #32
Workflow file for this run
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: tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| # ffmpeg does the encoding and also builds the sample videos the suite runs against. | |
| # shellcheck is no use here: it refuses to parse a zsh script. | |
| - name: Install ffmpeg and shfmt | |
| run: brew install ffmpeg shfmt | |
| - name: Check formatting | |
| run: shfmt -d . | |
| - name: Run the test suite | |
| run: ./tests/run-tests.sh |