[CI,Test] Build the solution every time
This commit is contained in:
parent
34643a632d
commit
616b2c60ad
22
.github/workflows/build.yml
vendored
Normal file
22
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: C/C++ CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
ubuntu-build:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2.0.0
|
||||
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.1
|
||||
|
||||
- name: setup nuget
|
||||
uses: NuGet/setup-nuget@v1.0.2
|
||||
|
||||
- name: restore project packages
|
||||
run: nuget restore umbra.sln
|
||||
|
||||
- name: build
|
||||
run: msbuild /m /p:Configuration=Debug umbra.sln
|
Loading…
Reference in New Issue
Block a user