fix: builder and sdk changes #81
3 changed files with 9 additions and 0 deletions
6
.github/actions/acc_test/action.yaml
vendored
6
.github/actions/acc_test/action.yaml
vendored
|
|
@ -75,6 +75,12 @@ runs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: go mod tidy
|
run: go mod tidy
|
||||||
|
|
||||||
|
- name: Crete service account file
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "${{ inputs.service_account_json }}" > ~/.service_account.json
|
||||||
|
cat ~/.service_account.json
|
||||||
|
|
||||||
- name: Run acceptance test file
|
- name: Run acceptance test file
|
||||||
if: ${{ inputs.test_file != '' }}
|
if: ${{ inputs.test_file != '' }}
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
|
@ -15,6 +15,8 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- '!main'
|
- '!main'
|
||||||
- '!alpha'
|
- '!alpha'
|
||||||
|
paths:
|
||||||
|
- '!.github'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GO_VERSION: "1.25"
|
GO_VERSION: "1.25"
|
||||||
|
|
|
||||||
1
.github/workflows/tf-acc-test.yaml
vendored
1
.github/workflows/tf-acc-test.yaml
vendored
|
|
@ -18,6 +18,7 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
echo "${{ secrets.TF_ACC_SERVICE_ACCOUNT_JSON }}" >~/.service_account.json
|
echo "${{ secrets.TF_ACC_SERVICE_ACCOUNT_JSON }}" >~/.service_account.json
|
||||||
|
cat ~/.service_account.json
|
||||||
|
|
||||||
- name: Run Test
|
- name: Run Test
|
||||||
uses: ./.github/actions/acc_test
|
uses: ./.github/actions/acc_test
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue