Skip to content

build(deps): bump github.com/docker/docker from 27.3.1+incompatible to 27.4.0+incompatible #102

build(deps): bump github.com/docker/docker from 27.3.1+incompatible to 27.4.0+incompatible

build(deps): bump github.com/docker/docker from 27.3.1+incompatible to 27.4.0+incompatible #102

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build
run: make ci
- name: Upload coverage
uses: actions/upload-artifact@v4
if: ${{ github.event_name != 'pull_request' }}
with:
name: coverage-${{ matrix.os }}
path: coverage.*
- run: goreleaser release --rm-dist --snapshot
if: ${{ runner.os == 'Linux' && github.event_name != 'pull_request' }}
- name: Upload dist
uses: actions/upload-artifact@v4
if: ${{ github.event_name != 'pull_request' }}
with:
name: dist-${{ matrix.os }}
path: dist
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
if: ${{ github.event_name != 'pull_request' }}
with:
fail_ci_if_error: true
file: ./coverage.out
token: ${{ secrets.CODECOV_TOKEN }}