From dfc39ff36c278c042ac1f9be803a5711f1d54a4e Mon Sep 17 00:00:00 2001 From: Steve Winslow Date: Sun, 13 Mar 2022 13:02:42 -0400 Subject: [PATCH] Fix pulling main branch for code coverage 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 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 150babea..82d1f53e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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'