forked from open-telemetry/opentelemetry-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Github actions workflow to trigger error from #907
- Loading branch information
Showing
3 changed files
with
32 additions
and
179 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: "Test #907" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
jobs: | ||
test: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2.1.3 | ||
with: | ||
go-version: 1.14 | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Setup Environment | ||
run: | | ||
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | ||
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | ||
shell: bash | ||
- name: Module cache | ||
uses: actions/cache@v2.1.5 | ||
env: | ||
cache-name: go-mod-cache | ||
with: | ||
path: ~/go/pkg/mod | ||
key: windows-latest-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }} | ||
- name: Run tests | ||
env: | ||
GOARCH: "386" | ||
run: go test -v -failfast -count=10000 -run=TestHandlerTestSuite/TestNoDropsOnDelegate |