Skip to content

Bump the all-gomod group across 1 directory with 2 updates #72

Bump the all-gomod group across 1 directory with 2 updates

Bump the all-gomod group across 1 directory with 2 updates #72

Workflow file for this run

name: Main Pipeline
on:
push:
branches:
- main
tags:
- "*.*.*"
pull_request:
branches:
- main
schedule:
- cron: "0 8 * * MON" # Run every Monday at 08:00
workflow_dispatch: # Allow manual trigger
env:
GO_VERSION: "1.22"
jobs:
lint:
name: lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- uses: golangci/golangci-lint-action@v6
test:
name: test
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: go test -timeout=5m -coverprofile cover.out -coverpkg ./... -covermode=atomic ./tests/...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}