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 1f38244
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 179 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/changelog.yml

This file was deleted.

146 changes: 0 additions & 146 deletions .github/workflows/ci.yml

This file was deleted.

57 changes: 57 additions & 0 deletions .github/workflows/test-907.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: "Test #907"
on:
push:
branches:
- main
pull_request:
jobs:
Go-1_14:
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 -failfast -count=10000 -run=TestHandlerTestSuite/TestNoDropsOnDelegate
Go-1_15:
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v2.1.3
with:
go-version: 1.15
- 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 -failfast -count=10000 -run=TestHandlerTestSuite/TestNoDropsOnDelegate

0 comments on commit 1f38244

Please sign in to comment.