Skip to content

Commit d018e8c

Browse files
committedMar 24, 2021
open sourcing teller! 🎊
0 parents  commit d018e8c

File tree

2,467 files changed

+778996
-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.

2,467 files changed

+778996
-0
lines changed
 

‎.github/workflows/ci.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, macos-latest]
16+
go: ['1.14', '1.15']
17+
env:
18+
VERBOSE: 1
19+
GOFLAGS: -mod=readonly
20+
GOPROXY: https://proxy.golang.org
21+
22+
steps:
23+
- name: Set up Go
24+
uses: actions/setup-go@v2
25+
with:
26+
go-version: ${{ matrix.go }}
27+
28+
- name: Checkout code
29+
uses: actions/checkout@v2
30+
31+
- name: golangci-lint
32+
uses: golangci/golangci-lint-action@v2
33+
with:
34+
args: --timeout 5m0s
35+
36+
- name: Test
37+
run: make test

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
autobrew
2+
dist/
3+
teller
4+
.vscode/
5+
node_modules/

0 commit comments

Comments
 (0)