Skip to content

Commit

Permalink
Add Github actions workflow to trigger error from #907
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAlias committed Apr 20, 2021
1 parent 66389ad commit b025365
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test-907.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "Test #907"
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
go-version: [1.15, 1.14]
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2.1.3
with:
go-version: ${{ matrix.go-version }}
- 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: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
- name: Run tests
run: go test -failfast -count=1000 -run=TestHandlerTestSuite/TestNoDropsOnDelegate

0 comments on commit b025365

Please sign in to comment.