Skip to content

chore(deps): bump go.opentelemetry.io/otel/metric from 1.29.0 to 1.30.0 in /service/cron #81

chore(deps): bump go.opentelemetry.io/otel/metric from 1.29.0 to 1.30.0 in /service/cron

chore(deps): bump go.opentelemetry.io/otel/metric from 1.29.0 to 1.30.0 in /service/cron #81

Workflow file for this run

name: Cron CI Go Check
on:
pull_request:
branches:
- main
paths:
- 'service/cron/**'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./service/cron
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: "1.22"
cache: false
- name: mod download
run: go mod download
- name: build
run: go build ./cmd/index.go
- name: test
run: go test -v ./... -cover
- name: golangci-lint
uses: golangci/golangci-lint-action@v5
with:
version: v1.58.0
working-directory: ./service/cron