Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanLarsson authored Apr 18, 2023
1 parent b2570ea commit df03381
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]

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: setup
uses: actions/setup-dotnet@v3
- name: restore
run: dotnet restore
- name: build
run: dotnet build --configuration Release --no-restore
- name: test
run: dotnet test --configuration Release --no-build

0 comments on commit df03381

Please sign in to comment.