Skip to content

Commit 789e02a

Browse files
committed
github: fix run errors and add windows action
1 parent 47bb2ac commit 789e02a

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

.github/workflows/continuous-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Display .NET info
2525
run: dotnet --info
2626

27-
- run:
27+
- run: |
2828
cd Src
2929
dotnet build
3030
dotnet test
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Continuous Linux
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- '*'
9+
pull_request:
10+
branches:
11+
- master
12+
13+
jobs:
14+
build:
15+
runs-on: windows-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
19+
- name: Setup dotnet
20+
uses: actions/setup-dotnet@v2
21+
with:
22+
dotnet-version: '6.0.x'
23+
24+
- name: Display .NET info
25+
run: dotnet --info
26+
27+
- run: |
28+
cd Src
29+
dotnet build
30+
dotnet test

0 commit comments

Comments
 (0)