...

Text file src/github.com/bits-and-blooms/bitset/.github/workflows/test.yml

Documentation: github.com/bits-and-blooms/bitset/.github/workflows

     1on: pull_request
     2name: Test
     3jobs:
     4  test:
     5    strategy:
     6      matrix:
     7        go-version: ['1.13', '1.14']
     8        os: [ubuntu-latest, macos-latest, windows-latest]
     9    runs-on: ${{ matrix.os }}
    10    steps:
    11    - name: Install Go
    12      uses: actions/setup-go@v2
    13      with:
    14        go-version: ${{ matrix.go-version }}
    15    - name: Checkout code
    16      uses: actions/checkout@master
    17    - name: Test
    18      run: go test ./...

View as plain text