forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ibrahim Umar
committed
Dec 30, 2023
1 parent
262e934
commit 25a89e1
Showing
2 changed files
with
34 additions
and
14 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: Run Relevant Checks | ||
|
||
on: [push] | ||
|
||
jobs: | ||
acceptance: | ||
name: Acceptance Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: 'go.mod' | ||
- uses: hashicorp/setup-terraform@v3 | ||
with: | ||
terraform_version: '1.6.*' | ||
terraform_wrapper: false | ||
- run: make make acctests | ||
env: | ||
TF_ACC: '1' | ||
TESTARGS: '-parallel=1 -run=TestAccContainerAppEnvironment_' | ||
SERVICE: 'containerapps' | ||
TESTTIMEOUT: '60m' | ||
pr-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@4 | ||
- uses: actions/setup-go@5 | ||
with: | ||
go-version-file: 'go.mod' | ||
- run: make tools | ||
- run: make pr-check | ||
- run: git status |