build(deps): bump golang.org/x/oauth2 in /services/gcs #90
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 Dropbox" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
on: | |
push: | |
paths: | |
- 'services/dropbox/**' | |
tags-ignore: | |
- '**' | |
branches: | |
- '**' | |
pull_request: | |
paths: | |
- 'services/dropbox/**' | |
jobs: | |
services_test_dropbox: | |
name: "Services Test Dropbox" | |
runs-on: self-hosted | |
strategy: | |
matrix: | |
# Remove 1.15 test so that we only have one running tests for dropbox. | |
# This will be helpful for resolving rate limit problem. | |
# ref: https://github.com/beyondstorage/go-storage/issues/893 | |
go: [ "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_DROPBOX_CREDENTIAL: op://Engineering/Dropbox/testing/credential | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Test | |
env: | |
STORAGE_DROPBOX_INTEGRATION_TEST: on | |
working-directory: services/dropbox | |
run: make integration_test |