Skip to content

Commit 7fc4454

Browse files
committed
ci: Release, test
1 parent f3ada9e commit 7fc4454

File tree

4 files changed

+209
-1
lines changed

4 files changed

+209
-1
lines changed

.github/workflows/release.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Semantic Release
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- beta
7+
workflow_dispatch:
8+
9+
jobs:
10+
release:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: "☁️ checkout repository"
14+
uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
18+
- name: "🔧 setup Bun"
19+
uses: oven-sh/setup-bun@v1
20+
21+
- name: "📦 install dependencies"
22+
run: bun install -D conventional-changelog-conventionalcommits
23+
24+
- name: Get Author Name and Email
25+
run: |
26+
AUTHOR_NAME=$(git log -1 --pretty=format:%an ${{ github.sha }})
27+
AUTHOR_EMAIL=$(git log -1 --pretty=format:%ae ${{ github.sha }})
28+
echo "AUTHOR_NAME=$AUTHOR_NAME" >> $GITHUB_OUTPUT
29+
echo "AUTHOR_EMAIL=$AUTHOR_EMAIL" >> $GITHUB_OUTPUT
30+
id: author_info
31+
32+
- name: "Semantic release🚀"
33+
id: release
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
GIT_COMMITTER_NAME: "github-actions[bot]"
37+
GIT_COMMITTER_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
38+
GIT_AUTHOR_NAME: ${{ steps.author_info.outputs.AUTHOR_NAME }}
39+
GIT_AUTHOR_EMAIL: ${{ steps.author_info.outputs.AUTHOR_EMAIL }}
40+
run: |
41+
bun x semantic-release

.github/workflows/test.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Go Tests"
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- edited
7+
- synchronize
8+
- reopened
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
go-version: [ '1.20', '1.21.x' ]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Setup Go
21+
uses: actions/setup-go@v4
22+
with:
23+
go-version: ${{ matrix.go-version }}
24+
- name: Install dependencies
25+
run: go get .
26+
- name: Test with Go
27+
run: go test

.releaserc

+137
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
{
2+
"branches": [
3+
"main",
4+
"next",
5+
{
6+
"name": "beta",
7+
"prerelease": true
8+
}
9+
],
10+
"plugins": [
11+
[
12+
"@semantic-release/commit-analyzer",
13+
{
14+
"preset": "conventionalcommits",
15+
"releaseRules": [
16+
{
17+
"breaking": true,
18+
"release": "major"
19+
},
20+
{
21+
"type": "feat",
22+
"release": "minor"
23+
},
24+
{
25+
"type": "fix",
26+
"release": "patch"
27+
},
28+
{
29+
"type": "perf",
30+
"release": "patch"
31+
},
32+
{
33+
"type": "revert",
34+
"release": "patch"
35+
},
36+
{
37+
"type": "docs",
38+
"release": "minor"
39+
},
40+
{
41+
"type": "style",
42+
"release": "patch"
43+
},
44+
{
45+
"type": "refactor",
46+
"release": "patch"
47+
},
48+
{
49+
"type": "test",
50+
"release": "patch"
51+
},
52+
{
53+
"type": "build",
54+
"release": "patch"
55+
},
56+
{
57+
"type": "ci",
58+
"release": "patch"
59+
},
60+
{
61+
"type": "chore",
62+
"release": false
63+
}
64+
]
65+
}
66+
],
67+
"@semantic-release/release-notes-generator",
68+
"@semantic-release/github",
69+
[
70+
"@semantic-release/release-notes-generator",
71+
{
72+
"preset": "conventionalcommits",
73+
"parserOpts": {
74+
"noteKeywords": [
75+
"BREAKING CHANGE",
76+
"BREAKING CHANGES",
77+
"BREAKING"
78+
]
79+
},
80+
"writerOpts": {
81+
"commitsSort": [
82+
"subject",
83+
"scope"
84+
]
85+
},
86+
"presetConfig": {
87+
"types": [
88+
{
89+
"type": "feat",
90+
"section": "🍕 Features"
91+
},
92+
{
93+
"type": "feature",
94+
"section": "🍕 Features"
95+
},
96+
{
97+
"type": "fix",
98+
"section": "🐛 Bug Fixes"
99+
},
100+
{
101+
"type": "perf",
102+
"section": "🔥 Performance Improvements"
103+
},
104+
{
105+
"type": "revert",
106+
"section": "⏩ Reverts"
107+
},
108+
{
109+
"type": "docs",
110+
"section": "📝 Documentation"
111+
},
112+
{
113+
"type": "style",
114+
"section": "🎨 Styles"
115+
},
116+
{
117+
"type": "refactor",
118+
"section": "🧑‍💻 Code Refactoring"
119+
},
120+
{
121+
"type": "test",
122+
"section": "✅ Tests"
123+
},
124+
{
125+
"type": "build",
126+
"section": "🤖 Build System"
127+
},
128+
{
129+
"type": "ci",
130+
"section": "🔁 Continuous Integration"
131+
}
132+
]
133+
}
134+
}
135+
]
136+
]
137+
}

fastembed.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type FlagEmbedding struct {
3737
modelPath string
3838
}
3939

40-
// Options to initialize the embedding model
40+
// Options to initialize a FastEmbed model
4141
// Model: The model to use for embedding
4242
// ExecutionProviders: The execution providers to use for onnxruntime
4343
// MaxLength: The maximum length of the input sequence
@@ -404,6 +404,9 @@ func getEmbeddings(data []float32, dimensions []int64) []([]float32) {
404404
}
405405

406406
func encodingToInt32(inputA, inputB, inputC []int) (outputA, outputB, outputC []int64) {
407+
if len(inputA) != len(inputB) || len(inputB) != len(inputC) {
408+
panic("input lengths do not match")
409+
}
407410
outputA = make([]int64, len(inputA))
408411
outputB = make([]int64, len(inputB))
409412
outputC = make([]int64, len(inputC))

0 commit comments

Comments
 (0)