Skip to content

Commit

Permalink
Add missing checkout step
Browse files Browse the repository at this point in the history
  • Loading branch information
Evertras committed Feb 18, 2022
1 parent 53fead6 commit e15845b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,22 @@ on: [push, pull_request]

jobs:
coverage:
name: Report Coverage
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.17.6"

- name: Check out code
uses: actions/checkout@v2

- name: Install deps
run: |
go mod download
- name: Run tests
- name: Run tests with coverage output
run: |
go test -race -covermode atomic -coverprofile=covprofile ./...
Expand Down

0 comments on commit e15845b

Please sign in to comment.