| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- name: Lint
- on:
- push:
- branches:
- - master
- - develop
- pull_request:
- branches:
- - master
- - develop
- jobs:
- unit-test:
- strategy:
- matrix:
- go-version: [1.16.x]
- os: [ubuntu-18.04]
- runs-on: ${{ matrix.os }}
- steps:
- - name: Install Go
- uses: actions/setup-go@v2
- with:
- go-version: ${{ matrix.go-version }}
-
- - name: Checkout code
- uses: actions/checkout@v2
- - uses: actions/cache@v2
- with:
- # In order:
- # * Module download cache
- # * Build cache (Linux)
- # * Build cache (Mac)
- # * Build cache (Windows)
- path: |
- ~/go/pkg/mod
- ~/.cache/go-build
- ~/Library/Caches/go-build
- %LocalAppData%\go-build
- key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- restore-keys: |
- ${{ runner.os }}-go-
-
- - name: Lint
- run: |
- make lint
|