File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ concurrency:
17
17
18
18
jobs :
19
19
test-nightly :
20
+ # We do not run the full test suite on tags, because we already ran it on master before we made the release.
21
+ # We do build the docs on tags.
22
+ if : (github.event_name != 'push') || (github.ref_type == 'tag')
20
23
timeout-minutes : 150
21
24
runs-on : ${{ matrix.github-runner }}
22
25
strategy :
Original file line number Diff line number Diff line change 39
39
steps :
40
40
- run : exit 0
41
41
test :
42
+ # We do not run the full test suite on tags, because we already ran it on master before we made the release.
43
+ # We do build the docs on tags.
44
+ if : (github.event_name != 'push') || (github.ref_type == 'tag')
42
45
timeout-minutes : 150
43
46
runs-on : ${{ matrix.github-runner }}
44
47
strategy :
@@ -109,6 +112,7 @@ jobs:
109
112
env :
110
113
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
111
114
docs :
115
+ # We do build the docs on tags.
112
116
runs-on : ubuntu-latest
113
117
timeout-minutes : 30
114
118
steps :
You can’t perform that action at this time.
0 commit comments