Skip to content

[Snyk] Security upgrade grafana/grafana from latest to 10.2.2-ubuntu #6

[Snyk] Security upgrade grafana/grafana from latest to 10.2.2-ubuntu

[Snyk] Security upgrade grafana/grafana from latest to 10.2.2-ubuntu #6

Workflow file for this run

name: Integration
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x]
services:
redis:
image: redis/redis-stack-server:latest
options: >-
--health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
ports:
- 6379:6379
steps:
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: ${{matrix.go-version}}
- uses: actions/checkout@v4
- name: build
run: make build
- name: Test
run: make test