Skip to content

Commit cc4e1a2

Browse files
chore: retract v1.22.0 due to known bug (#252)
* chore: retract v1.22.0
1 parent f73a06f commit cc4e1a2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@ jobs:
3737
only-new-issues: true
3838

3939
- name: Build
40+
if: matrix.go != '1.15' # Breaking changes in golang 1.16 cause some unit test files to be invalid.
4041
run: make install
4142

4243
- name: Run Unit Tests
4344
if: matrix.go != '1.15' # Breaking changes in golang 1.16 cause some unit test files to be invalid.
4445
run: make test
4546

4647
- name: Run Cluster Tests
47-
if: (!github.event.pull_request.head.repo.fork)
48+
if: (!github.event.pull_request.head.repo.fork) && matrix.go != '1.15' # Breaking changes in golang 1.16 cause some unit test files to be invalid.
4849
env:
4950
TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }}
5051
TWILIO_API_KEY: ${{ secrets.TWILIO_CLUSTER_TEST_API_KEY}}

go.mod

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ require (
1414
github.com/stretchr/testify v1.7.0
1515
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
1616
)
17+
18+
retract (
19+
v1.22.0 // Contains known bug
20+
)

0 commit comments

Comments
 (0)