We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeacf24 commit bb4bf5fCopy full SHA for bb4bf5f
.github/workflows/test.yml
@@ -7,6 +7,23 @@ on:
7
branches: [ master ]
8
9
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
23
+ cd vcproj\x64\Release
24
+ .\tests.exe
25
26
27
Ubuntu:
28
runs-on: ubuntu-latest
29
steps:
0 commit comments