vmware-go-kcl-v2/.github/workflows/vmware-go-kcl-v2-ci.yml
Fabiano Graças 7b0c198c0f setup go 1.17
2021-12-20 21:21:15 -06:00

48 lines
No EOL
820 B
YAML
Executable file

name: vmware-go-kcl-v2
on:
push:
branches: [ master, upgrade/aws-sdk-to-v2 ]
paths-ignore: [ README.md ]
pull_request:
branches: [ master ]
paths-ignore: [ README.md ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Set up Go 1.17.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Build
shell: bash
run: |
make build
# - name: Test
# shell: bash
# run: |
# make test
- name: Format Check
shell: bash
run: |
make format-check
- name: Lint
shell: bash
run: |
make lint
- name: Scan
shell: bash
run: |
make scan