...

Text file src/github.com/google/uuid/.github/workflows/tests.yaml

Documentation: github.com/google/uuid/.github/workflows

     1---
     2name: tests
     3on:
     4  pull_request:
     5    branches:
     6      - master
     7permissions:
     8  contents: read
     9jobs:
    10  unit-tests:
    11    strategy:
    12      matrix:
    13        go-version: [1.19, 1.20.x, 1.21]
    14    runs-on: ubuntu-latest
    15    steps:
    16      - uses: actions/checkout@v3
    17      - uses: actions/setup-go@v4
    18        with:
    19          go-version: ${{ matrix.go-version }}
    20      - run: go test -v ./...

View as plain text