1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-18 08:26:38 +02:00
go-micro/.github/workflows/pr.yml

29 lines
497 B
YAML
Raw Normal View History

2020-02-24 16:11:17 +02:00
name: PR Sanity Check
on: pull_request
jobs:
prtest:
2020-02-24 16:16:51 +02:00
name: PR sanity check
2020-02-24 16:11:17 +02:00
runs-on: ubuntu-latest
steps:
2020-12-12 21:51:18 +02:00
- name: Set up Go 1.15
2020-02-24 16:11:17 +02:00
uses: actions/setup-go@v1
with:
2020-12-12 21:51:18 +02:00
go-version: 1.15
2020-02-24 16:11:17 +02:00
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
id: tests
env:
IN_TRAVIS_CI: yes
run: go test -v ./...