Skip to content

Commit 21d6806

Browse files
committedApr 28, 2024
init
1 parent 3618cbc commit 21d6806

Some content is hidden

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

51 files changed

+10628
-0
lines changed
 

‎.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.html linguist-language=Go

‎.github/workflows/Test.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [ main, test_au ]
6+
pull_request:
7+
branches: [ main, test_au ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up Go
15+
uses: actions/setup-go@v2
16+
with:
17+
go-version: '1.22'
18+
- name: Build
19+
run: go build -v ./...
20+
- name: Test
21+
run: go test -v ./...

0 commit comments

Comments
 (0)