github.com/m4gshm/gollections@v0.0.10/.github/workflows/makefile.yml (about)

     1  name: Run Tests
     2  
     3  on:
     4    push:
     5      branches:
     6        - master
     7        - main
     8        - dev
     9        - "releases/**"
    10        - "feature/**"
    11        - "bugfix/**"
    12    pull_request:
    13      branches:
    14        - master
    15        - main
    16        - dev
    17        - "releases/**"
    18        - "feature/**"
    19        - "bugfix/**"
    20  
    21  jobs:
    22    build:
    23      runs-on: ubuntu-22.04
    24      steps:
    25        - name: checkout
    26          uses: actions/checkout@v3
    27        - name: run tests
    28          uses: docker://golang:1.20-bullseye
    29          with:
    30            args: make build lint bench cover-console-out
    31