github.com/akamai/AkamaiOPEN-edgegrid-golang/v4@v4.1.0/.github/workflows/checks.yml (about)

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