Skip to content

Bump github.com/grafana/grafana-plugin-sdk-go from 0.265.0 to 0.266.0 in the all-go-dependencies group #32

Bump github.com/grafana/grafana-plugin-sdk-go from 0.265.0 to 0.266.0 in the all-go-dependencies group

Bump github.com/grafana/grafana-plugin-sdk-go from 0.265.0 to 0.266.0 in the all-go-dependencies group #32

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
env:
GO_VERSION: 1.23
jobs:
tests:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: mysql
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql
MYSQL_HOST: 127.0.0.1
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup Go environment
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache-dependency-path: "**/*.sum"
- name: Test
run: go test -v ./...
- name: Integration tests
run: go test -v ./...
env:
INTEGRATION_TESTS: "true"
MYSQL_URL: "mysql:mysql@tcp(127.0.0.1:3306)/mysql"