Skip to content

Commit e40d9f8

Browse files
committedDec 4, 2023
Initial opensource version.
0 parents  commit e40d9f8

File tree

117 files changed

+15034
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+15034
-0
lines changed
 

‎.github/workflows/func-tests.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Func-tests
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
schedule:
9+
- cron: '30 06 * * *'
10+
11+
env:
12+
GO_VERSION: 1.21.3
13+
14+
jobs:
15+
test:
16+
name: Test
17+
runs-on: ubuntu-22.04
18+
steps:
19+
- name: Set up Go 1.x
20+
uses: actions/setup-go@v3
21+
with:
22+
go-version: ${{ env.GO_VERSION }}
23+
24+
- name: Check out code into the Go module directory
25+
uses: actions/checkout@v3
26+
27+
- name: Get dependencies
28+
run: go get -v -t -d ./...
29+
30+
- name: Run test
31+
run: make test
32+
33+
- uses: actions/upload-artifact@v3
34+
if: failure()
35+
with:
36+
name: logs
37+
path: tests/logs

‎.github/workflows/golangci-lint.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Linters
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
env:
10+
GO_VERSION: 1.21.3
11+
12+
permissions:
13+
contents: read
14+
15+
jobs:
16+
golangci:
17+
name: lint
18+
runs-on: ubuntu-22.04
19+
steps:
20+
- uses: actions/setup-go@v3
21+
with:
22+
go-version: ${{ env.GO_VERSION }}
23+
- uses: actions/checkout@v3
24+
- name: golangci-lint
25+
uses: golangci/golangci-lint-action@v3
26+
with:
27+
version: v1.55

0 commit comments

Comments
 (0)
Please sign in to comment.