Skip to content

fix(deps): bump dependency go from 1.25.4 to 1.25.5 (#37) #133

fix(deps): bump dependency go from 1.25.4 to 1.25.5 (#37)

fix(deps): bump dependency go from 1.25.4 to 1.25.5 (#37) #133

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- 'main'
jobs:
dry-release:
name: dry release
uses: mathieu-keller/github-action-workflows/.github/workflows/semantic-release.yaml@v1.0.0
with:
release-branch: main
dry: true
test:
name: test
runs-on: ubuntu-24.04
steps:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.25.5
- name: Checkout
uses: actions/checkout@v6
- name: install dep
run: go get -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
release:
name: create release
needs: [test]
if: ${{ github.ref == 'refs/heads/main' }}
uses: mathieu-keller/github-action-workflows/.github/workflows/semantic-release.yaml@v1.0.0
with:
release-branch: main
dry: false