fix module path #2
This file contains 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: test_and_report | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- go.mod | |
- go.sum | |
- "internal" | |
- "*.go" | |
permissions: | |
contents: write | |
jobs: | |
test_and_report: | |
strategy: | |
fail-fast: false | |
matrix: | |
go: [1.21] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
name: Test and report maintainability of ldap-cli | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install go tools | |
run: | | |
go install golang.org/x/tools/gopls@latest && \ | |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest && \ | |
go install github.com/axw/gocov/gocov@latest | |
- name: Export Module Name | |
id: export_module_name | |
run: echo "MODULE_NAME=$(go mod edit -json | jq -r '.Module.Path')" >> "$GITHUB_OUTPUT" | |
- name: Run linters | |
run: gofmt -s -d ./ && golangci-lint run -v | |
- name: Test & publish code coverage | |
uses: paambaati/codeclimate-action@v5.0.0 | |
env: | |
TEST_OAT: "true" | |
CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_REPORTER_ID }} | |
with: | |
coverageCommand: gocov test ./... -coverprofile=c.out | |
coverageLocations: ./c.out:gocov | |
debug: true | |
prefix: ${{ steps.export_module_name.outputs.MODULE_NAME }} |