Skip to content

fix(deps): update module github.com/stretchr/testify to v1.10.0 #35

fix(deps): update module github.com/stretchr/testify to v1.10.0

fix(deps): update module github.com/stretchr/testify to v1.10.0 #35

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: write
id-token: write
jobs:
lint:
name: Lint
uses: gofor-little/github-actions/.github/workflows/golang-lint.yaml@main
test:
name: Test
uses: gofor-little/github-actions/.github/workflows/golang-test.yaml@main
bump-tag:
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
needs:
- lint
- test
name: Bump Tag
uses: gofor-little/github-actions/.github/workflows/bump-tag.yaml@main
release:
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
needs:
- bump-tag
name: Release
uses: gofor-little/github-actions/.github/workflows/github-release.yaml@main
with:
tag: ${{ needs.bump-tag.outputs.bumped-tag }}
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}