Minor tweaks to the Github workflows.
[mailpopbox.git] / .github / workflows / pr.yml
1 name: PR
2
3 on:
4 pull_request:
5 branches: [ master ]
6
7 jobs:
8 test:
9 runs-on: ubuntu-latest
10 steps:
11 - uses: actions/checkout@v2
12 - uses: actions/setup-go@v2
13 with:
14 go-version: ^1.14
15 id: go
16 - run: go get -v -t -d ./...
17 - run: make
18 - uses: actions/upload-artifact@v2
19 with:
20 name: coverage
21 path: cover.html