From b7a84f63879180d84e7c0517a1ff91d588bd546d Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 5 May 2023 15:07:31 +0200 Subject: [PATCH] try a build on every change --- .github/workflows/dotnet.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index ef97e09ca..658dc2b81 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -1,10 +1,6 @@ name: .NET -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request] jobs: build: @@ -12,9 +8,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Checking submodules - uses: textbook/git-checkout-submodule-action@2.1.1 + - uses: actions/checkout@v3 + with: + submodules: recursive - name: Setup .NET uses: actions/setup-dotnet@v1 with: