From b063ee1f54dec17662a43457868e8d131c96e175 Mon Sep 17 00:00:00 2001 From: Ubit Umarov Date: Wed, 24 Aug 2022 21:14:40 +0100 Subject: [PATCH] Create msbuild48.yml add github test action --- .github/workflows/msbuild48.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/msbuild48.yml diff --git a/.github/workflows/msbuild48.yml b/.github/workflows/msbuild48.yml new file mode 100644 index 0000000000..52bb28a90f --- /dev/null +++ b/.github/workflows/msbuild48.yml @@ -0,0 +1,20 @@ +name: .msbuild48 + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: preBuild + run: bash ${GITHUB_WORKSPACE}/runprebuild48.sh + - name: Build + run: msbuild /p:Configuration=Release OpenMetaverse.sln +