You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: Go
-
- on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
-
- jobs:
-
- build:
- name: Build
- runs-on: ubuntu-latest
- steps:
-
- - name: Set up Go 1.17
- uses: actions/setup-go@v1
- with:
- go-version: 1.17
- id: go
-
- - name: Check out code into the Go module directory
- uses: actions/checkout@v2
-
- - name: Build
- run: make
|