forked from github-release/github-release
-
Notifications
You must be signed in to change notification settings - Fork 0
23 lines (23 loc) · 718 Bytes
/
ci.yml
File metadata and controls
23 lines (23 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@master
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@master
with:
path: './src/github.com/github-release/github-release'
# staticcheck needs this for GOPATH
- run: echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- run: echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV
- name: Run tests
run: make lint test
working-directory: './src/github.com/github-release/github-release'