diff options
author | David Robertson <davidr@element.io> | 2023-10-30 13:07:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 13:07:08 +0000 |
commit | 4e1a19d3752b5bda95e6791e98b3f9df4dfb33cd (patch) | |
tree | 87a3d7f95d74c8242aff393d83808525df60ad88 /.github/workflows/tests.yml | |
parent | Fix HTTP repl response to use minimum token (#16578) (diff) | |
download | synapse-4e1a19d3752b5bda95e6791e98b3f9df4dfb33cd.tar.xz |
Run actions/setup-go after checking out complement (#16567)
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 12420911b4..a1f714da23 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -633,11 +633,14 @@ jobs: uses: dtolnay/rust-toolchain@1.61.0 - uses: Swatinem/rust-cache@v2 - - uses: actions/setup-go@v4 - - name: Prepare Complement's Prerequisites run: synapse/.ci/scripts/setup_complement_prerequisites.sh + - uses: actions/setup-go@v4 + with: + cache-dependency-path: complement/go.sum + go-version-file: complement/go.mod + # use p=1 concurrency as GHA boxes are underpowered and don't like running tons of synapses at once. - run: | set -o pipefail |