build(deps): bump github.com/google/uuid in /services/gdrive #138
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 Storj" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
on: | |
push: | |
paths: | |
- 'services/storj/**' | |
tags-ignore: | |
- '**' | |
branches: | |
- '**' | |
pull_request: | |
paths: | |
- 'services/storj/**' | |
jobs: | |
services_test_storj: | |
name: "Services Test Storj" | |
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_STORJ_CREDENTIAL: op://Engineering/Storj/testing/credential | |
STORAGE_STORJ_NAME: op://Engineering/Storj/testing/name | |
STORAGE_STORJ_LOCATION: op://Engineering/Storj/testing/location | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Test | |
env: | |
STORAGE_STORJ_INTEGRATION_TEST: on | |
working-directory: services/storj | |
run: make integration_test |