Skip to content

build(deps): bump github.com/docker/docker from 23.0.3+incompatible to 24.0.9+incompatible #585

build(deps): bump github.com/docker/docker from 23.0.3+incompatible to 24.0.9+incompatible

build(deps): bump github.com/docker/docker from 23.0.3+incompatible to 24.0.9+incompatible #585

Workflow file for this run

name: build-pr
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: setup go environment
uses: actions/setup-go@v2
with:
go-version: '1.20'
- name: download dependencies
run: make bootstrap
- name: run unit tests
run: make test
- name: build binary
run: make build-linux
- name: run acceptance tests
run: sudo pip install virtualenv && make acceptance
- name: upload coverage report
uses: actions/upload-artifact@main
with:
name: chartmuseum-coverage-report-${{ github.sha }}
path: .cover/
if: always()
- name: upload acceptance test report
uses: actions/upload-artifact@main
with:
name: chartmuseum-acceptance-report-${{ github.sha }}
path: .robot/
if: always()