github.com/segmentio/encoding@v0.3.6/.github/workflows/test.yml (about)

     1  name: Test
     2  
     3  on:
     4  - pull_request
     5  
     6  jobs:
     7    test:
     8      strategy:
     9        matrix:
    10          go:
    11          - 1.14
    12          - 1.15
    13          - 1.16
    14          - 1.17
    15  
    16      runs-on: ubuntu-latest
    17  
    18      steps:
    19      - uses: actions/checkout@v2
    20  
    21      - name: Setup Go ${{ matrix.go }}
    22        uses: actions/setup-go@v2
    23        with:
    24          go-version: ${{ matrix.go }}
    25  
    26      - name: Download Dependencies
    27        run: go mod download
    28  
    29      - name: Run Tests
    30        run: make test