Merge pull request #148 from Guy-L/master #130
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup MSBuild environment | |
uses: microsoft/[email protected] | |
with: | |
msbuild-architecture: x86 | |
- name: Build thprac | |
run: msbuild thprac.sln -t:restore,build -p:RestorePackagesConfig=true,Configuration=Release | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: thprac | |
path: | | |
Release/thprac.exe | |
Release/thprac.pdb |