Skip to content

Bump github.com/codeGROOVE-dev/retry from 1.2.0 to 1.3.0 in the dependencies group #30

Bump github.com/codeGROOVE-dev/retry from 1.2.0 to 1.3.0 in the dependencies group

Bump github.com/codeGROOVE-dev/retry from 1.2.0 to 1.3.0 in the dependencies group #30

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [ opened, synchronize, reopened ]
permissions: {} # No default permissions
env:
GO_VERSION: '1.23.4'
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Test
run: |
make lint
make test
make build