github.com/m4gshm/gollections@v0.0.13-0.20240331203319-a34a86e58a24/.github/workflows/makefile.yml (about)

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