Commit ff3298d 1 parent e2a3469 commit ff3298d Copy full SHA for ff3298d
File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 10
10
# Allows manually triggering this workflow from the Actions tab.
11
11
workflow_dispatch :
12
12
13
+ concurrency :
14
+ # Cancel previous actions from the same PR: https://stackoverflow.com/a/72408109
15
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
16
+ cancel-in-progress : true
17
+
13
18
jobs :
14
19
distros :
15
20
strategy :
19
24
- ubuntu-22.04
20
25
runs-on : ${{ matrix.os }}
21
26
steps :
22
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v4
23
28
- uses : bazelbuild/setup-bazelisk@v2
24
29
- name : Test
25
30
run : |
36
41
- opt
37
42
runs-on : ubuntu-20.04
38
43
steps :
39
- - uses : actions/checkout@v3
44
+ - uses : actions/checkout@v4
40
45
- uses : bazelbuild/setup-bazelisk@v2
41
46
- name : Test
42
47
run : |
54
59
- ubsan
55
60
runs-on : ubuntu-20.04
56
61
steps :
57
- - uses : actions/checkout@v3
62
+ - uses : actions/checkout@v4
58
63
- uses : bazelbuild/setup-bazelisk@v2
59
64
- name : Test ${{ matrix.sanitizer }}
60
65
run : |
65
70
coverage :
66
71
runs-on : ubuntu-20.04
67
72
steps :
68
- - uses : actions/checkout@v3
73
+ - uses : actions/checkout@v4
69
74
- uses : bazelbuild/setup-bazelisk@v2
70
75
- name : Test Coverage
71
76
run : |
82
87
- macos-11
83
88
runs-on : ${{ matrix.os }}
84
89
steps :
85
- - uses : actions/checkout@v3
90
+ - uses : actions/checkout@v4
86
91
- uses : bazelbuild/setup-bazelisk@v2
87
92
- name : Test with RBE
88
93
run : |
You can’t perform that action at this time.
0 commit comments