|
| 1 | +--- |
| 2 | +# Copyright 2022 |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | + |
1 | 16 | name: Go
|
2 |
| -#name: verify TODO rename (requires repo settings update) |
| 17 | +# name: verify TODO rename (requires repo settings update) |
3 | 18 |
|
| 19 | +# yamllint disable-line rule:truthy |
4 | 20 | on:
|
5 | 21 | push:
|
6 |
| - branches: [ master ] |
| 22 | + branches: [master] |
7 | 23 | pull_request:
|
8 |
| - branches: [ master, issue-99-cosmos-upgrade-v0.44 ] |
| 24 | + branches: [master, issue-99-cosmos-upgrade-v0.44] |
9 | 25 | workflow_dispatch:
|
10 | 26 |
|
11 | 27 | jobs:
|
@@ -87,19 +103,19 @@ jobs:
|
87 | 103 | steps:
|
88 | 104 |
|
89 | 105 | - name: Set up Go 1.x
|
90 |
| - if: false # TODO issue 99 |
| 106 | + if: false # TODO issue 99 |
91 | 107 | uses: actions/setup-go@v2
|
92 | 108 | with:
|
93 | 109 | go-version: ^1.16
|
94 | 110 |
|
95 | 111 | - name: Get google/addlicense
|
96 |
| - if: false # TODO issue 99 |
| 112 | + if: false # TODO issue 99 |
97 | 113 | run: go get -u github.com/google/addlicense
|
98 | 114 |
|
99 | 115 | - name: Check out code into the Go module directory
|
100 |
| - if: false # TODO issue 99 |
| 116 | + if: false # TODO issue 99 |
101 | 117 | uses: actions/checkout@v2
|
102 | 118 |
|
103 | 119 | - name: Check license
|
104 |
| - if: false # TODO issue 99 |
| 120 | + if: false # TODO issue 99 |
105 | 121 | run: make license-check
|
0 commit comments