Add modification for gitRemoteUrl in DBT projects and fix Proxy Agents #472
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: Testing | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
env: | |
FIVETRAN_API_URL : "https://api-staging.fivetran.com/v1" | |
FIVETRAN_APIKEY : ${{ secrets.FIVETRAN_APIKEY }} | |
FIVETRAN_APISECRET : ${{ secrets.FIVETRAN_APISECRET }} | |
FIVETRAN_TEST_CERTIFICATE_HASH : ${{ secrets.FIVETRAN_TEST_CERTIFICATE_HASH }} | |
FIVETRAN_TEST_CERTIFICATE : ${{ secrets.FIVETRAN_TEST_CERTIFICATE }} | |
FIVETRAN_GROUP_ID : "sepulchre_settlement" | |
FIVETRAN_USER_ID : "recoup_befell" | |
run: go test -v ./... |