build(deps): bump github.com/baidubce/bce-sdk-go from 0.9.192 to 0.9.194 in /services/bos #518
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Services Test Bos" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
on: | |
push: | |
paths: | |
- 'services/bos/**' | |
tags-ignore: | |
- '**' | |
branches: | |
- '**' | |
pull_request: | |
paths: | |
- 'services/bos/**' | |
jobs: | |
services_test_bos: | |
name: "Services Test Bos" | |
runs-on: self-hosted | |
strategy: | |
matrix: | |
go: [ "1.16", "1.17" ] | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Load secret | |
uses: 1password/load-secrets-action@v1 | |
env: | |
STORAGE_BOS_CREDENTIAL: op://Engineering/Bos/testing/credential | |
STORAGE_BOS_NAME: op://Engineering/Bos/testing/name | |
STORAGE_BOS_ENDPOINT: op://Engineering/Bos/testing/endpoint | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Test | |
env: | |
STORAGE_BOS_INTEGRATION_TEST: on | |
working-directory: services/bos | |
run: make integration_test |