Skip to content

Commit bb4bf5f

Browse files
committed
Try build/test on Windows using github action
1 parent eeacf24 commit bb4bf5f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ on:
77
branches: [ master ]
88

99
jobs:
10+
Windows:
11+
runs-on: windows-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Install requirements
15+
run: |
16+
choco install nuget.commandline -y
17+
nuget restore simpleini.sln
18+
19+
- run: msbuild simpleini.sln /p:Configuration=Release
20+
21+
- name: Run Tests
22+
run: |
23+
cd vcproj\x64\Release
24+
.\tests.exe
25+
26+
1027
Ubuntu:
1128
runs-on: ubuntu-latest
1229
steps:

0 commit comments

Comments
 (0)