Skip to content

Bump Velopack from 0.0.626 to 0.0.869 #7

Bump Velopack from 0.0.626 to 0.0.869

Bump Velopack from 0.0.626 to 0.0.869 #7

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