Skip to content

Commit ffed369

Browse files
authored
Merge branch 'main' into develop
2 parents 6619a47 + 6fd0090 commit ffed369

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[*]
2+
charset = utf-8
3+
indent_style = space
4+
indent_size = 2

.github/workflows/go.yml

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

0 commit comments

Comments
 (0)