Skip to content

chore: update release workflow name and refine tag creation process #17

chore: update release workflow name and refine tag creation process

chore: update release workflow name and refine tag creation process #17

Workflow file for this run

name: Run Go Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
GO_VERSION: "1.25.1"
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: go tool task test