Skip to content

Updated whisper.cpp to 1.5.5 #126

Updated whisper.cpp to 1.5.5

Updated whisper.cpp to 1.5.5 #126

Workflow file for this run

name: Testing
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
jobs:
testAllModes:
name: Test in ${{ matrix.unityVersion }}
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
unityVersion:
- 2019.4.40f1
steps:
- uses: actions/checkout@v3
- uses: game-ci/unity-test-runner@v4
id: tests
with:
testMode: playmode
unityVersion: ${{ matrix.unityVersion }}
checkName: ${{ matrix.unityVersion }} Test Results
coverageOptions: 'generateHtmlReport;assemblyFilters:+com.whisper.unity'
- uses: actions/upload-artifact@v3
if: always()
with:
name: Test results for ${{ matrix.unityVersion }}
path: ${{ steps.tests.outputs.artifactsPath }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: Coverage results for ${{ matrix.unityVersion }}
path: ${{ steps.tests.outputs.coveragePath }}