Add Azure VM and AKS integration tests for the default OTel config #4029
Workflow file for this run
This file contains hidden or 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: Build check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| compile: | |
| strategy: | |
| matrix: | |
| os: [ | |
| ubuntu-latest, | |
| windows-latest | |
| # macos-latest | |
| ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install Terraform | |
| uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2 | |
| - name: Verify Terraform version | |
| run: terraform --version | |
| - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
| - name: Setup Go | |
| uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0 | |
| with: | |
| go-version: ~1.23.0 | |
| - name: Lint Terraform | |
| if: runner.os == 'Linux' | |
| run: cd terraform && make check-fmt | |
| - name: Lint Go | |
| if: runner.os == 'Linux' | |
| run: make simple-lint | |
| - name: Compile tests | |
| run: | | |
| echo "Compile tests" | |
| make compile |