Skip to content

Commit

Permalink
Create ci.yml to build and test
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverzick authored Oct 28, 2024
1 parent 10e033c commit cb827f4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Display .NET version
run: dotnet --version
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal

0 comments on commit cb827f4

Please sign in to comment.