Skip to content

Bump Whisper.net.Runtime from 1.7.0 to 1.7.2 #10

Bump Whisper.net.Runtime from 1.7.0 to 1.7.2

Bump Whisper.net.Runtime from 1.7.0 to 1.7.2 #10

Workflow file for this run

name: Build WinWhisper application
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal