aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-08-03 10:35:57 +0100
committerNeil Alexander <neilalexander@users.noreply.github.com>2022-08-03 10:35:57 +0100
commitf7f2453a859e9a2b2cccec5b0f47d558bc9ca507 (patch)
tree538cfabb2ed54e34adcde2b5399c01dd89212a5a /.github
parentac2dbb3513b2e6ff24624f30a2a8b1bd51bdabc5 (diff)
Test Go 1.19 in CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/dendrite.yml15
1 files changed, 11 insertions, 4 deletions
diff --git a/.github/workflows/dendrite.yml b/.github/workflows/dendrite.yml
index 4cbfb380..0d1970ef 100644
--- a/.github/workflows/dendrite.yml
+++ b/.github/workflows/dendrite.yml
@@ -97,7 +97,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- go: ["1.18"]
+ go: ["1.18", "1.19"]
steps:
- uses: actions/checkout@v3
- name: Setup go
@@ -127,7 +127,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- go: ["1.18"]
+ go: ["1.18", "1.19"]
goos: ["linux"]
goarch: ["amd64", "386"]
steps:
@@ -160,7 +160,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- go: ["1.18"]
+ go: ["1.18", "1.19"]
goos: ["windows"]
goarch: ["amd64"]
steps:
@@ -384,7 +384,14 @@ jobs:
integration-tests-done:
name: Integration tests passed
- needs: [initial-tests-done, upgrade_test, upgrade_test_direct, sytest, complement]
+ needs:
+ [
+ initial-tests-done,
+ upgrade_test,
+ upgrade_test_direct,
+ sytest,
+ complement,
+ ]
runs-on: ubuntu-latest
if: ${{ !cancelled() }} # Run this even if prior jobs were skipped
steps: