forked from barnybug/cli53
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 915 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Test
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
- name: Check out code
uses: actions/checkout@v3
- name: Download Go dependencies
env:
GOPROXY: "https://proxy.golang.org"
run: go mod download
- name: Run unit tests
run: make test-unit
- name: Run test coverage
run: |
# gucumber only works from under GOPATH...
export GOPATH=$(go env GOPATH)
export PATH=$PATH:$GOPATH/bin
export GOSRC=$GOPATH/src/github.com/$GITHUB_REPOSITORY
mkdir -p $GOSRC
cp -r $(pwd)/* $GOSRC
cd $GOSRC
make test-coverage
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
GO111MODULE: 'on'