Skip to content

Commit

Permalink
Add a test configuration for retries
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljbruce committed Apr 26, 2024
1 parent 3f5db96 commit cdd6f3f
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/retries.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Github action job to test core java library features on
# downstream client libraries before they are released.
on:
push:
branches:
- main
pull_request:
name: conformance
jobs:
conformance:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 14, 16, 18, 20 ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: googleapis/cloud-bigtable-clients-test
ref: main
path: cloud-bigtable-clients-test
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: actions/setup-go@v5
with:
go-version: '>=1.20.2'
- run: chmod +x .kokoro/retries.sh
- run: npm install
- run: go version
- run: .kokoro/retries.sh
45 changes: 45 additions & 0 deletions .kokoro/retries.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cdd6f3f

Please sign in to comment.