Skip to content

Commit

Permalink
Merge pull request #32 from GewoonJaap/feature/build-script
Browse files Browse the repository at this point in the history
Build script GH action
  • Loading branch information
GewoonJaap authored Oct 12, 2024
2 parents 037fbfa + f7cd36c commit 53d9e63
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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

0 comments on commit 53d9e63

Please sign in to comment.