Switch to using cloudflare-ech.com as the target for the ech test #635
This file contains 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
# Runs the whole test suite using go1.22 | |
name: alltests-go1.22 | |
on: | |
pull_request: | |
push: | |
branches: | |
- "release/**" | |
- "fullbuild" | |
- "alltestsbuild" | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: magnetikonline/action-golang-cache@v4 | |
with: | |
go-version: ~1.22 | |
cache-key-suffix: "-alltests-go1.22" | |
# We cannot run buildtool tests using an unexpected version of Go because the | |
# tests check whether we're using the expected version of Go ππππ. | |
- run: go test -race -tags shaping $(go list ./...|grep -v 'internal/cmd/buildtool') |