github.com/akamai/AkamaiOPEN-edgegrid-golang/v2@v2.17.0/.github/workflows/checks.yml (about) 1 name: build 2 on: 3 push: 4 branches: 5 - "*" 6 pull_request: 7 branches: 8 - v2 9 - master 10 jobs: 11 test: 12 runs-on: ubuntu-latest 13 steps: 14 - name: Checkout 15 uses: actions/checkout@v2 16 - name: Set up Go 17 uses: actions/setup-go@v2 18 with: 19 go-version-file: 'go.mod' 20 - name: Fmt check 21 run: make fmt-check 22 - name: Linter check 23 run: make lint 24 - name: Run tests 25 run: make test-verbose