Skip to content

Commit

Permalink
Merge branch 'sebastian/prod-2721-think-up-a-test-strategy-for-plural…
Browse files Browse the repository at this point in the history
…-up' of github.com:pluralsh/plural-cli into sebastian/prod-2721-think-up-a-test-strategy-for-plural-up
  • Loading branch information
floreks committed Nov 21, 2024
2 parents 1c24c57 + 6948dde commit 23f2cc7
Showing 1 changed file with 50 additions and 4 deletions.
54 changes: 50 additions & 4 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ env:
GOPATH: /home/runner/go/
GOBIN: /home/runner/go/bin
jobs:
build:
name: Test `plural up`
plural-up-gcp:
name: Test `plural up` / GCP
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -24,9 +24,55 @@ jobs:
go-version-file: go.mod
- name: Add GOBIN to PATH
run: echo $GOBIN >> $GITHUB_PATH
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
- name: Setup Plural CLI
run: make install-cli
- name: Print Plural CLI version
run: plural version
- name: Print Terraform version
run: terraform --version
- name: Print Google Cloud CLI version
run: gcloud --version
plural-up-aws:
name: Test `plural up` / AWS
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go
uses: actions/[email protected]
with:
go-version-file: go.mod
- name: Add GOBIN to PATH
run: echo $GOBIN >> $GITHUB_PATH
- name: Setup Plural CLI
run: make install-cli
- name: Print Plural CLI version
run: plural version
- name: Print Terraform version
run: terraform --version
- name: Print AWS CLI version
run: aws --version
plural-up-azure:
name: Test `plural up` / Azure
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go
uses: actions/[email protected]
with:
go-version-file: go.mod
- name: Add GOBIN to PATH
run: echo $GOBIN >> $GITHUB_PATH
- name: Setup Plural CLI
run: make install-cli
- name: Print Plural CLI version
run: plural version
- name: Print Terraform version
run: terraform --version
- name: Print Azure CLI version
run: az --version

0 comments on commit 23f2cc7

Please sign in to comment.