Skip to content

Commit

Permalink
Fix pulling main branch for code coverage
Browse files Browse the repository at this point in the history
After the branch renaming from 'master' to 'main' in 0.2.0 per #69,
the tests were being run by GitHub Actions on the 'main' branch.
However, the code coverage tooling appears to still have been
pulling the old 'master' branch and therefore was not including
later changes such as the new JSON code. This PR fixes this by
changing the branch name in the GitHub Actions config file.

Signed-off-by: Steve Winslow <steve@swinslow.net>
  • Loading branch information
swinslow committed Mar 13, 2022
1 parent 4e65b9b commit dfc39ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
- uses: actions/setup-go@v2
with:
go-version: '1.14'
Expand Down

0 comments on commit dfc39ff

Please sign in to comment.