Skip to content

Commit

Permalink
ci: re-ordered code checkout and ginkgo install
Browse files Browse the repository at this point in the history
  • Loading branch information
achannarasappa committed Oct 28, 2021
1 parent c376247 commit 2968726
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install Ginkgo
run: go get -u github.com/onsi/ginkgo/ginkgo@v1.16.4
- name: Checkout code
uses: actions/checkout@v2
- name: Install Ginkgo
run: go get -u github.com/onsi/ginkgo/ginkgo@v1.16.4
- name: Test
run: ginkgo -skip="GetQuotes Response" -cover ./...
coverage:
Expand All @@ -29,10 +29,10 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: 1.15.x
- name: Install Ginkgo
run: go get -u github.com/onsi/ginkgo/ginkgo@v1.16.4
- name: Checkout code
uses: actions/checkout@v2
- name: Install Ginkgo
run: go get -u github.com/onsi/ginkgo/ginkgo@v1.16.4
- name: Calc coverage
run: |
ginkgo -skip="GetQuotes Response" -cover -outputdir=./ -coverprofile=coverage.out ./...
Expand Down

0 comments on commit 2968726

Please sign in to comment.