Skip to content

Commit

Permalink
update for stable and oldstable
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffbean committed Sep 22, 2023
1 parent 5c09471 commit bc5eee8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:
strategy:
matrix:
zk-version: [3.5.8, 3.6.1]
go-version: [1.13.x, 1.14.x]
go-version: ['oldstable', 'stable']
runs-on: ubuntu-latest
steps:
- name: Go ${{ matrix.go }} setup
uses: actions/setup-go@v1
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Setup Java 14
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 14

- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Test code
run: make test ZK_VERSION=${{ matrix.zk-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unittest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: unittest
strategy:
matrix:
go-version: ['1.13.x', '1.14.x', 'stable']
go-version: ['oldstable', 'stable']
runs-on: ubuntu-latest
steps:
- name: Go ${{ matrix.go }} setup
Expand All @@ -15,7 +15,7 @@ jobs:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Run unittest ${{ matrix.go }}
run: make unittest

0 comments on commit bc5eee8

Please sign in to comment.