Codebase list golang-github-go-kit-kit / 8ddcac0
Add go 1.17 to build matrix Chris Hines 2 years ago
1 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
1010 name: Build
1111 runs-on: ubuntu-latest
1212 strategy:
13 matrix: # Support latest and one minor back
14 go: ['1.15', '1.16']
13 matrix: # Support latest and one minor back
14 go: ["1.16", "1.17"]
1515 env:
1616 GOFLAGS: -mod=readonly
1717
4646 - name: Set up Go
4747 uses: actions/setup-go@v2.1.3
4848 with:
49 stable: 'false'
49 stable: "false"
5050 go-version: ${{ matrix.go }}
5151
5252 - name: Checkout code