From 8f34f7c2cc1538eea14f11e24bcc1a7b4c8d92b8 Mon Sep 17 00:00:00 2001 From: Mateusz Skoczek Date: Sun, 10 Mar 2024 23:59:53 +0100 Subject: [PATCH] Create pull_request_master.yml --- .github/workflows/pull_request_master.yml | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/pull_request_master.yml diff --git a/.github/workflows/pull_request_master.yml b/.github/workflows/pull_request_master.yml new file mode 100644 index 0000000..0853380 --- /dev/null +++ b/.github/workflows/pull_request_master.yml @@ -0,0 +1,26 @@ +name: Build application on master pull request + + +on: + pull_request: + branches: + - "master" + paths: + - "VDownload**" + + +jobs: + build: + name: Build + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8.0.x + - name: Build + run: dotnet build