Skip to content

Bump docker/build-push-action from 5 to 6 in the github-actions group #55

Bump docker/build-push-action from 5 to 6 in the github-actions group

Bump docker/build-push-action from 5 to 6 in the github-actions group #55

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
go:
name: Go
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- name: Download Dependencies
run: |
go mod download
- name: Vet
run: |
make vet
- name: Test
run: |
make test
- name: Build Plugin
run: |
make build-plugin
- name: Build Ingester
run: |
make build-ingester