Skip to content

Upgrade: Bump github.com/docker/docker #331

Upgrade: Bump github.com/docker/docker

Upgrade: Bump github.com/docker/docker #331

Workflow file for this run

name: unit test
on:
push:
paths:
- "**.go"
- "go.mod"
- "go.sum"
- ".github/workflows/test.yml"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19'
- name: Test
run: make test-cov-ci
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './.cov'
if: github.ref == 'refs/heads/main'
deploy-coverage:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/main'
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main