Skip to content

Commit ee8c6bb

Browse files
authored
chore: Enable run-deep-tests (#2105)
1 parent ddc13c2 commit ee8c6bb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/msbuild.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
dotnet-version: 6.0.x # SDK Version for building Dafny
9-
9+
1010
jobs:
1111
singletons:
1212
runs-on: ubuntu-18.04
@@ -49,13 +49,13 @@ jobs:
4949
- name: Check whitespace and style
5050
working-directory: dafny
5151
run: dotnet tool run dotnet-format -w -s error --check Source/Dafny.sln --exclude Dafny/Scanner.cs --exclude Dafny/Parser.cs
52-
52+
5353
check-deep-tests:
5454
uses: ./.github/workflows/check-deep-tests-reusable.yml
55-
if: "!(contains(github.event.pull_request.labels.*.name, 'run-deep-tests'))"
56-
55+
5756
integration-tests:
5857
needs: check-deep-tests
58+
if: always() && (needs.check-deep-tests.result == 'success' || contains(github.event.pull_request.labels.*.name, 'run-deep-tests'))
5959
uses: ./.github/workflows/integration-tests-reusable.yml
6060
with:
6161
# By default run only on one platform, but run on all platforms if the PR has the "run-deep-tests"

0 commit comments

Comments
 (0)