Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Konboi committed Mar 19, 2024
1 parent e9c08af commit 1409a3d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ on:
branches: [master]
paths:
- "go/**"
- ".github/workflows/go.yml"
pull_request:
paths:
- "go/**"
- ".github/workflows/go.yml"

env:
LAUNCHABLE_TOKEN: ${{ secrets.LAUNCHABLE_TOKEN_GO }}
Expand All @@ -22,6 +24,11 @@ jobs:
working-directory: go
steps:
- uses: actions/checkout@v2
- 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
Expand All @@ -40,8 +47,10 @@ jobs:
run: |
go install github.com/jstemmer/go-junit-report@latest
- run: "launchable verify"
- run: "ls .."
- run: "ls"
- name: Record commits and build
run: 'launchable record build --name "$GITHUB_RUN_ID" --source ..' # care for working-directory path
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
Expand Down

0 comments on commit 1409a3d

Please sign in to comment.