updated gcloud-sdk to 444.0.0 #332
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: test | |
on: [push] | |
jobs: | |
json-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./ | |
env: | |
PROJECT_ID: ${{secrets.GCP_PROJECT_ID}} | |
APPLICATION_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS_JSON }} | |
with: | |
args: info | |
base64-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./ | |
env: | |
PROJECT_ID: ${{secrets.GCP_PROJECT_ID}} | |
APPLICATION_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} | |
with: | |
args: info | |
multistep-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./ | |
env: | |
PROJECT_ID: ${{secrets.GCP_PROJECT_ID}} | |
APPLICATION_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} | |
- uses: ./ | |
with: | |
args: info | |
multistep-different-config-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./ | |
env: | |
PROJECT_ID: test-1 | |
APPLICATION_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} | |
with: | |
args: info | |
- uses: ./ | |
env: | |
PROJECT_ID: test-2 | |
APPLICATION_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} | |
with: | |
args: info |