diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index a3398e3..b3696ad 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -62,4 +62,12 @@ jobs: - name: Run Tests run: | - go test -mod=mod -shuffle=on -race -timeout 300s ./... \ No newline at end of file + go test -mod=mod -shuffle=on -race -timeout 300s -coverprofile=coverage.txt -covermode=atomic ./... + + - name: Upload coverage report + if: runner.os == 'macos' + uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + file: ./coverage.txt + flags: unittests \ No newline at end of file diff --git a/privatebtcdocker b/privatebtcdocker deleted file mode 100755 index bb97627..0000000 Binary files a/privatebtcdocker and /dev/null differ