Skip to content

chore(deps): Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible in /tools #29

chore(deps): Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible in /tools

chore(deps): Bump github.com/docker/docker from 25.0.4+incompatible to 25.0.5+incompatible in /tools #29

Workflow file for this run

---
name: Pull Requests
on:
pull_request:
branches:
- main
- 'v*'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.22.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: make test
- name: Check repo status
run: |-
REPO_STATUS="$(git status --porcelain)"
if [[ ! -z $REPO_STATUS ]]; then
echo "::error::Uncommitted changes detected"
echo "$REPO_STATUS"
exit 1
fi