...

Text file src/github.com/imdario/mergo/.github/workflows/tests.yml

Documentation: github.com/imdario/mergo/.github/workflows

     1name: 'tests'
     2on:
     3  push:
     4    branches:
     5      - master
     6jobs:
     7  build:
     8    runs-on: ubuntu-latest
     9    steps:
    10      - uses: actions/checkout@v3
    11      - name: Set up Go
    12        uses: actions/setup-go@v4
    13        with:
    14          go-version: '>=1.17.0'
    15      - name: Build
    16        run: go build -v ./...
    17      - name: Test
    18        run: go test -v ./...

View as plain text