Skip to content

chore(deps): update module github.com/docker/cli to v29.6.1+incompatible #99

chore(deps): update module github.com/docker/cli to v29.6.1+incompatible

chore(deps): update module github.com/docker/cli to v29.6.1+incompatible #99

Workflow file for this run

---
name: Run Tests and Upload Coverage
on:
workflow_call:
workflow_dispatch:
pull_request:
paths:
- cmd/**
- internal/**
- pkg/**
- go.mod
- go.sum
- main.go
permissions:
contents: read # Set default read-only permissions
jobs:
test:
name: Run Tests and Upload Coverage Report
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform:
- macos-latest
- windows-2025
- ubuntu-latest
steps:
- name: Harden the Runner (Step Security)
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- name: Checkout Repo
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
cache: true
cache-dependency-path: "**/go.sum"
go-version-file: go.mod
- name: Install Dependencies
run: go mod download
- name: Run Tests
run: |
go test -timeout 60s -v -coverprofile="coverage.out" -covermode atomic ./...
- name: Upload Coverage Report to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}