Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit c725a61

Browse files
Added GitHub workflow action
1 parent 053947c commit c725a61

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: .NET Core workflow
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [macOS-latest, ubuntu-latest, windows-latest]
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Setup .NET Core
15+
uses: actions/setup-dotnet@v1
16+
with:
17+
dotnet-version: 3.1.100
18+
- name: Build
19+
run: dotnet build --configuration Release
20+
- name: Run tests
21+
run: dotnet test --configuration Release

0 commit comments

Comments
 (0)