Fixes an issue with m4a incorrectly pass as non-optimized (#129) #193
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: "AudioStreaming CI" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - hotfix | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| test: | |
| name: Test Swift Package | |
| runs-on: macOS-latest | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build | |
| run: swift build | |
| - name: Run tests | |
| run: swift test --parallel |