We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5210bf9 commit 219f0afCopy full SHA for 219f0af
.travis.yml .github/workflows/github-actions.yml.travis.yml renamed to .github/workflows/github-actions.yml
@@ -15,13 +15,27 @@
15
# specific language governing permissions and limitations
16
# under the License.
17
18
-sudo: false
19
-language: go
20
-go:
21
- - 1.14.x
+name: Github-Actions
22
23
-script:
24
- - make all
+on: [push, pull_request]
25
26
-env:
27
- - GO111MODULE=on
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ cancel-in-progress: true
+
+jobs:
+ build:
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v3
31
32
+ - name: Set up Go
33
+ uses: actions/setup-go@v3
34
+ with:
35
+ go-version: 1.19.x
36
37
+ - name: Run Script
38
+ run: make all
39
40
+ env:
41
+ GO111MODULE: on
0 commit comments