Skip to content

Commit ae08902

Browse files
committed
ci: add ci config for gotip
Signed-off-by: Mark Sagi-Kazar <[email protected]>
1 parent b0e403b commit ae08902

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/tip.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Tip
2+
3+
on:
4+
push:
5+
branches:
6+
- generics
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Set up gotip
16+
run: |
17+
go install golang.org/dl/gotip@latest
18+
gotip download
19+
20+
- name: Checkout code
21+
uses: actions/checkout@v2
22+
23+
- name: Run tests
24+
run: gotip test -v ./endpoint/ ./transport/http2/

0 commit comments

Comments
 (0)