From 8b0e88fc246849078a71b70b531a1b7101562888 Mon Sep 17 00:00:00 2001 From: ManlyMarco <39247311+ManlyMarco@users.noreply.github.com> Date: Wed, 29 May 2024 02:04:07 +0200 Subject: [PATCH] Create build_pr.yml --- .github/workflows/build_pr.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build_pr.yml diff --git a/.github/workflows/build_pr.yml b/.github/workflows/build_pr.yml new file mode 100644 index 00000000..b26aec53 --- /dev/null +++ b/.github/workflows/build_pr.yml @@ -0,0 +1,21 @@ +name: Build PR + +on: + pull_request: + branches: + - master + +jobs: + test: + runs-on: windows-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: | + 3.1.x + 6.0.300 + - name: Log dotnet info + run: dotnet --info + - name: Run test + run: ./build.ps1 --target=Test