Skip to content

Commit

Permalink
Tests for another PR
Browse files Browse the repository at this point in the history
  • Loading branch information
iambaim committed Apr 8, 2024
1 parent fa5b983 commit 0bbdd66
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ jobs:
name: Acceptance Tests
runs-on: ubuntu-latest
steps:
- name: Extract branch name
shell: bash
run: echo "branch=$(basename ${GITHUB_REF_NAME})" >> $GITHUB_OUTPUT
id: extract_branch
- uses: actions/checkout@v4
with:
fetch-depth: 1
ref: container_app_environment_custom_dns_suffix
ref: ${{ steps.extract_branch.outputs.branch }}
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
Expand All @@ -23,7 +27,7 @@ jobs:
- run: make acctests
env:
TF_ACC: '1'
TESTARGS: '-parallel=1 -run=TestAccContainerAppEnvironment_completeWithCustomDnsSuffix'
TESTARGS: '-parallel=1 -run=TestAccContainerAppCustomDomainResource_'
SERVICE: 'containerapps'
TESTTIMEOUT: '60m'
ARM_CLIENT_ID: ${{ secrets.ARM_CLIENT_ID }}
Expand All @@ -33,14 +37,20 @@ jobs:
ARM_TEST_LOCATION: ${{ secrets.ARM_TEST_LOCATION }}
ARM_TEST_LOCATION_ALT: ${{ secrets.ARM_TEST_LOCATION_ALT }}
ARM_TEST_LOCATION_ALT2: ${{ secrets.ARM_TEST_LOCATION_ALT2 }}
ARM_TEST_DNS_ZONE: azuredesk.top
ARM_TEST_DATA_RESOURCE_GROUP: test-rg
pr-check:
name: PR checks
runs-on: ubuntu-latest
steps:
- name: Extract branch name
shell: bash
run: echo "branch=$(basename ${GITHUB_REF_NAME})" >> $GITHUB_OUTPUT
id: extract_branch
- uses: actions/checkout@v4
with:
fetch-depth: 1
ref: container_app_environment_custom_dns_suffix
ref: ${{ steps.extract_branch.outputs.branch }}
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
Expand Down

0 comments on commit 0bbdd66

Please sign in to comment.