We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da5b999 commit 7721868Copy full SHA for 7721868
.github/workflows/go.yml
@@ -44,6 +44,7 @@ jobs:
44
name: cli-binaries
45
path: .
46
- name: Select correct binary
47
+ shell: bash
48
run: |
49
if [ "${{ matrix.os }}" = "windows-latest" ]; then
50
mv cli-v2.exe cli-v2
@@ -58,15 +59,6 @@ jobs:
58
59
- name: Install dependencies from .codacy/codacy.yaml
60
61
./cli-v2 install
- - name: "Run tests"
62
- run: |
63
- go test -coverprofile=unit.coverage.out ./...
64
- - name: "Upload coverage to Codacy"
65
- if: matrix.os == 'ubuntu-latest' # Only upload coverage from Ubuntu
66
- env:
67
- CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
68
69
- bash <(curl -Ls https://coverage.codacy.com/get.sh) report --force-coverage-parser go -r unit.coverage.out
70
71
release:
72
needs: test
0 commit comments