Expand testdata/generated.txt with exhaustive boolean and condition…
#473
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go-versions: [ '1.18', '1.22', '1.24', '1.25' ] | |
| go-arch: [ '386' ] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Go ${{ matrix.go-version }} | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Build | |
| run: GOARCH=${{ matrix.go-arch }} go build |