build(deps): bump google.golang.org/api in /services/gcs #1890
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 Gcs" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
on: | |
push: | |
paths: | |
- 'services/gcs/**' | |
tags-ignore: | |
- '**' | |
branches: | |
- '**' | |
pull_request: | |
paths: | |
- 'services/gcs/**' | |
jobs: | |
services_test_gcs: | |
name: "Services Test Gcs" | |
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_GCS_CREDENTIAL: op://Engineering/Gcs/testing/credential | |
STORAGE_GCS_NAME: op://Engineering/Gcs/testing/name | |
STORAGE_GCS_PROJECT_ID: op://Engineering/Gcs/testing/project_id | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Test | |
env: | |
STORAGE_GCS_INTEGRATION_TEST: on | |
working-directory: services/gcs | |
run: make integration_test |