drop go 1.18, add 1.21, do not fail fast

This commit is contained in:
Tim Möhlmann 2023-09-01 11:36:47 +03:00
parent 257b5e73b1
commit ad3fc30f2e
3 changed files with 6 additions and 5 deletions

View file

@ -15,8 +15,9 @@ jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
go: ['1.18', '1.19', '1.20']
go: ['1.19', '1.20', '1.21']
name: Go ${{ matrix.go }} test
steps:
- uses: actions/checkout@v3

View file

@ -115,10 +115,10 @@ Versions that also build are marked with :warning:.
| Version | Supported |
| ------- | ------------------ |
| <1.18 | :x: |
| 1.18 | :warning: |
| 1.19 | :white_check_mark: |
| <1.19 | :x: |
| 1.19 | :warning: |
| 1.20 | :white_check_mark: |
| 1.21 | :white_check_mark: |
## Why another library

2
go.mod
View file

@ -1,6 +1,6 @@
module github.com/zitadel/oidc/v2
go 1.18
go 1.19
require (
github.com/golang/mock v1.6.0