Skip to content

Update all patch, or digest dependencies on Go #900

Update all patch, or digest dependencies on Go

Update all patch, or digest dependencies on Go #900

Workflow file for this run

name: test
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
branches:
- main
pull_request:
paths-ignore:
- '.github/**'
- '!.github/workflows/test.yml'
- '**.md'
branches:
- main
jobs:
gotest:
name: Format Check, Analysis and Test
runs-on: ubuntu-latest
permissions:
contents: read
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Run go mod tidy
run: |
go mod tidy
git diff --exit-code
- name: Run database
run: |
docker compose up -d db
sleep 10
- name: Run Test
run: |
make test
git diff --exit-code