File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 66
77env :
88 dotnet-version : 6.0.x # SDK Version for building Dafny
9-
9+
1010jobs :
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"
You can’t perform that action at this time.
0 commit comments