Skip to content

Commit

Permalink
enable tests with latest versions of go
Browse files Browse the repository at this point in the history
  • Loading branch information
peczenyj committed May 10, 2022
1 parent 056e545 commit 0062453
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 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 @@ -29,10 +32,10 @@ jobs:
runs-on: ubuntu-latest
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 @@ -51,10 +54,10 @@ jobs:
runs-on: ubuntu-latest
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 0062453

Please sign in to comment.