Skip to content

Commit

Permalink
Added Acceptance Workflow for DDI object groups (#186)
Browse files Browse the repository at this point in the history
* Modify Workflow to run tests sequentially in a package

* Added separate release workflow for DDI objects

* Updated name for workflow

* modified workflow name
  • Loading branch information
unasra authored Feb 7, 2025
1 parent a2e9f19 commit 30cf1b1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/acceptance_test_ddi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Acceptance Tests for DDI object groups

on:
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-latest
continue-on-error: false
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: '1.23'
- name: Run tests
timeout-minutes: 120
env:
TF_ACC: "1"
BLOXONE_CSP_URL: ${{ secrets.BLOXONE_CSP_URL }}
BLOXONE_API_KEY: ${{ secrets.BLOXONE_API_KEY }}
DHCP_HOST: ${{ secrets.DHCP_HOST }}
DNS_HOST: ${{ secrets.DNS_HOST }}
run: |
go test -parallel=1 $(go list ./... | grep -E 'dns_config|dns_data|ipam|ipamfederation|clouddiscovery') -timeout 120m -v -cover

0 comments on commit 30cf1b1

Please sign in to comment.