github.com/remyoudompheng/bigfft@v0.0.0-20230129092748-24d4a6f8daec/.github/workflows/main.yml (about)

     1  name: Unit tests
     2  
     3  on:
     4    push:
     5      branches: [ "master" ]
     6    pull_request:
     7      branches: [ "master" ]
     8  
     9  jobs:
    10    build:
    11      runs-on: ubuntu-latest
    12      strategy:
    13        matrix:
    14          go: [ '~1.12', '~1.17', 'oldstable', 'stable' ]
    15      name: Test with Go ${{ matrix.go }}
    16      steps:
    17        - uses: actions/checkout@v3
    18        - name: Setup go
    19          uses: actions/setup-go@v3
    20          with:
    21            go-version: ${{ matrix.go }}
    22        - run: go test