Skip to content

Add a line for description part in pr template #34

Add a line for description part in pr template

Add a line for description part in pr template #34

Workflow file for this run

name: Build & Test
on:
pull_request:
push:
branches:
- "*"
tags:
- "*"
jobs:
build:
name: Test
runs-on: ubuntu-latest
env:
GO_ENV: test
steps:
- name: Skip Duplicate Actions
uses: fkirc/[email protected]
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.25.5'
id: go
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test ./...