[+] test: Create codacy.yml #181
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Go 1.15- | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'feature/**' | |
| - 'dev/**' | |
| env: | |
| CODECOV_TOKEN: '2fc0d617-8e9a-47d7-ab58-52fa92b23741' | |
| MAIN_GO_VER: '1.13' | |
| MAIN_HOST_OS: 'ubuntu-latest' | |
| jobs: | |
| go_test_and_coverage: | |
| strategy: | |
| max-parallel: 6 | |
| matrix: | |
| GO_VER: ['1.13', '1.14', '1.15'] | |
| HOST_OS: ['ubuntu-latest'] | |
| runs-on: ${{ matrix.HOST_OS }} | |
| steps: | |
| - name: Checkout Repositary | |
| uses: actions/checkout@v3 | |
| - name: Setup Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: ${{ matrix.GO_VER }} | |
| id: go | |
| - name: Get Dependencies | |
| run: | | |
| echo GO_VER = ${{ matrix.GO_VER }} | |
| go get golang.org/x/tools/cmd/cover | |
| go get github.com/mattn/goveralls | |
| go get . | |
| - name: Go test | |
| run: | | |
| go test -v -failfast -cover -covermode=atomic -coverprofile=coverage.out |