Skip to content

Update changelog for v0.8.12 #1026

Update changelog for v0.8.12

Update changelog for v0.8.12 #1026

Workflow file for this run

name: test
on:
pull_request:
paths:
- pkg/**
- main.go
- go.mod
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
- name: Run Tests
run: |
set -e
retries=3
count=0
until [ $count -ge $retries ]
do
go test -v -cover ./... && break
count=$((count+1))
echo "Retrying tests... Attempt $count of $retries"
done
if [ $count -ge $retries ]; then
echo "Tests failed after $retries attempts."
exit 1
fi