Files
quic-go/.github/workflows/integration.yml
Workflow config file is invalid. Please check your config file: yaml: line 15: did not find expected whitespace or line break
Marten Seemann e2df1d9d15 Merge pull request #2953 from lucas-clemente/go116
add support for Go 1.16
2020-12-30 12:21:19 +08:00

28 lines
872 B
YAML

on: [push, pull_request]
jobs:
unit:
strategy:
fail-fast: false
matrix:
go: [ "1.14.x", "1.15.x", "1.16.0-beta1" ]
runs-on: ubuntu-latest
name: Integration Tests, Go ${{ matrix.go }})
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
stable: !contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")
go-version: ${{ matrix.go }}
- run: go version
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/ginkgo
- name: Install dependencies
run: go install
- name: Run tests
run: ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace integrationtests
- name: Run tests (32 bit)
env:
GOARCH: 386
run: ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace integrationtests