-
Notifications
You must be signed in to change notification settings - Fork 26
62 lines (59 loc) · 1.71 KB
/
go.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Go
on:
push:
branches: [master]
paths:
- "go/**"
- ".github/workflows/go.yml"
pull_request:
paths:
- "go/**"
- ".github/workflows/go.yml"
env:
LAUNCHABLE_TOKEN: ${{ secrets.LAUNCHABLE_TOKEN_GO }}
LAUNCHABLE_DEBUG: 1
LAUNCHABLE_REPORT_ERROR: 1
jobs:
tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: go
steps:
- uses: actions/checkout@v2
with:
ref: master
- uses: actions/checkout@v2
with:
repository: launchableinc/cli
ref: main
path: cli
- uses: actions/setup-python@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel setuptools_scm
pip install launchable
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Install dependencies
run: |
go install github.com/jstemmer/go-junit-report@latest
- run: "launchable verify"
- run: "ls -a .."
- run: "ls -a "
- name: Record commits and build
run: 'launchable record build --name "$GITHUB_RUN_ID" --source .. --source=cli=../cli' # care for working-directory path
- name: Subset
run: go test -list="Test|Example" ./... | launchable subset --confidence 80% go-test > launchable-subset.txt
- name: Test
run: go test $(cat launchable-subset.txt) ./... -v 2>&1 | go-junit-report -set-exit-code > report.xml
- name: Record
run: launchable record tests go-test report.xml
if: always()