Skip to content

Commit 90a7178

Browse files
committed
ci: add workflows
1 parent 96441ef commit 90a7178

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.github/release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
changelog:
2+
categories:
3+
- title: 💥 Breaking changes
4+
labels:
5+
- breaking-change
6+
- title: ⚡️ Improvements
7+
labels:
8+
- enhancement
9+
- documentation
10+
- title: 👨‍🔧 Fixes
11+
labels:
12+
- bugs
13+
- title: 🎨 Other changes
14+
labels:
15+
- "*"

.github/workflows/tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test
2+
on:
3+
push:
4+
branches: [ main ]
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Setup Go
14+
uses: actions/setup-go@v5
15+
with:
16+
go-version: '1.21.3'
17+
- name: Install dependencies
18+
run: go get .
19+
- name: Test with the Go CLI
20+
run: go test ./...

0 commit comments

Comments
 (0)