Skip to content

Commit

Permalink
ci: add ci config for gotip
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
  • Loading branch information
sagikazarmark committed Sep 28, 2021
1 parent b0e403b commit ae08902
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tip.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Tip

on:
push:
branches:
- generics
pull_request:

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Set up gotip
run: |
go install golang.org/dl/gotip@latest
gotip download
- name: Checkout code
uses: actions/checkout@v2

- name: Run tests
run: gotip test -v ./endpoint/ ./transport/http2/

0 comments on commit ae08902

Please sign in to comment.