review with mmatur #3
Workflow file for this run
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
name: Test Integration | |
on: | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
push: | |
branches: | |
- 'gh-actions' | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
env: | |
GO_VERSION: '1.22' | |
CGO_ENABLED: 0 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Avoid generating webui | |
run: touch webui/static/index.html | |
- name: Build binary | |
run: make binary | |
test-integration: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
strategy: | |
fail-fast: true | |
matrix: | |
parallel: [12] | |
index: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Avoid generating webui | |
run: touch webui/static/index.html | |
- name: Build binary | |
run: make binary | |
- name: Generate go test Slice | |
id: test_split | |
uses: hashicorp-forge/go-test-split-action@v2 | |
with: | |
packages: ./integration | |
total: ${{ matrix.parallel }} | |
index: ${{ matrix.index }} | |
- name: Run Integration tests | |
run: | | |
TESTS=$(echo "${{ steps.test_split.outputs.run}}" | sed 's/\$/\$\$/g') | |
TESTFLAGS="-run \"${TESTS}\"" make test-integration |