Skip to content

Commit

Permalink
enable tests with latest versions of go (#206)
Browse files Browse the repository at this point in the history
* enable tests with latest versions of go

* fix workflow

* fix workflow go version format

* update go.mod with latest go version available

* Revert "update go.mod with latest go version available"

This reverts commit 98d6752.

* update go.mod and go.sum using go1.13

* Revert "update go.mod and go.sum using go1.13"

This reverts commit 1aa23e0.
  • Loading branch information
peczenyj authored Jul 1, 2022
1 parent 056e545 commit 2f85fa9
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ on:
jobs:
go-client:
runs-on: ubuntu-latest
strategy:
matrix:
goVer: ['1.13', '1.17', '1.18']
steps:
- uses: actions/checkout@v2
- name: Setup go
- name: Setup go ${{ matrix.goVer }}
uses: actions/setup-go@v1
with:
go-version: '1.13'
go-version: ${{ matrix.goVer }}
- name: Test with GO test
run: |
make up
Expand All @@ -27,12 +30,15 @@ jobs:
make down
go-client-ssl:
runs-on: ubuntu-latest
strategy:
matrix:
goVer: ['1.13', '1.17', '1.18']
steps:
- uses: actions/checkout@v2
- name: Setup go
- name: Setup go ${{ matrix.goVer }}
uses: actions/setup-go@v1
with:
go-version: '1.13'
go-version: ${{ matrix.goVer }}
- name: Test SSL connection with CA
run: |
make up-ssl
Expand All @@ -49,12 +55,15 @@ jobs:
make down
go-client-example:
runs-on: ubuntu-latest
strategy:
matrix:
goVer: ['1.13', '1.17', '1.18']
steps:
- uses: actions/checkout@v2
- name: Setup go
- name: Setup go ${{ matrix.goVer }}
uses: actions/setup-go@v1
with:
go-version: '1.13'
go-version: ${{ matrix.goVer }}
- name: Run examples
run: |
make up
Expand Down

0 comments on commit 2f85fa9

Please sign in to comment.