Skip to content

Bump golang from 1.22.1 to 1.22.2 in /cmd/exporter in the docker group #92

Bump golang from 1.22.1 to 1.22.2 in /cmd/exporter in the docker group

Bump golang from 1.22.1 to 1.22.2 in /cmd/exporter in the docker group #92

name: Continuous Integration
on:
push:
jobs:
go:
name: Go
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
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: |
go vet ./...
- name: Test
run: |
go test ./...
- name: Build
run: |
make build