Skip to content

Commit

Permalink
Try build/test on Windows using github action
Browse files Browse the repository at this point in the history
  • Loading branch information
brofield committed Dec 1, 2024
1 parent eeacf24 commit bb4bf5f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ on:
branches: [ master ]

jobs:
Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install requirements
run: |
choco install nuget.commandline -y
nuget restore simpleini.sln
- run: msbuild simpleini.sln /p:Configuration=Release

- name: Run Tests
run: |
cd vcproj\x64\Release
.\tests.exe
Ubuntu:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit bb4bf5f

Please sign in to comment.