Skip to content

feat: add grafana metric dashboard example (#101) #135

feat: add grafana metric dashboard example (#101)

feat: add grafana metric dashboard example (#101) #135

Workflow file for this run

name: Integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
types: [ opened, reopened, synchronize ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
integration:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ "7.1.6", "7.2.5", "7.6.1" ]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Start cluster
run: make create-cluster version=${{ matrix.version }}
- name: Integration Test
run: go test -v test/integration/integration_test.go
env:
INPUT_PUBLISH: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Delete cluster
if: always()
run: make delete-cluster