From 1d96b3b2075b594c8a86e2a2f1184ee9ac592ee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Dahlgren?= Date: Tue, 12 May 2020 13:13:06 +0200 Subject: [PATCH] GitHub Actions Build solution and archive TADST project output --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..afaf385 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + runs-on: windows-latest + steps: + - name: git checkout + uses: actions/checkout@v2 + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v1 + - name: Build solution + run: msbuild /p:Configuration=Release + - name: Upload build artifact + uses: actions/upload-artifact@v2 + with: + name: TADST + path: TADST/bin/Release