File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 26
26
27
27
jobs :
28
28
29
+ licenses :
30
+ runs-on : ubuntu-latest
31
+
32
+ steps :
33
+ - uses : actions/checkout@v2
34
+
35
+ - name : Check licenses
36
+ run : |
37
+ go get -u github.com/google/addlicense
38
+ export PATH=$PATH:$(go env GOPATH)/bin
39
+ addlicense -check .
40
+
29
41
stable :
30
42
runs-on : ubuntu-latest
31
43
53
65
- name : Format (manifest)
54
66
run : cargo verify-project
55
67
56
- - name : Format (addlicense)
57
- run : |
58
- go get -u github.com/google/addlicense
59
- export PATH=$PATH:$(go env GOPATH)/bin
60
- addlicense -check .
61
-
62
68
- name : Package (docs)
63
69
run : cargo doc --no-deps --target=wasm32-unknown-unknown
64
70
92
98
- name : Format (manifest)
93
99
run : cargo +nightly verify-project
94
100
95
- - name : Format (addlicense)
96
- run : |
97
- go get -u github.com/google/addlicense
98
- export PATH=$PATH:$(go env GOPATH)/bin
99
- addlicense -check .
100
-
101
101
- name : Package (docs)
102
102
run : cargo +nightly doc --no-deps --target=wasm32-unknown-unknown
103
103
You can’t perform that action at this time.
0 commit comments