Attempt to support pointer to slice and filter to pointer basic types #349
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 | |
| on: | |
| push: | |
| branches: [ develop, master ] | |
| pull_request: | |
| branches: [ develop ] | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v7 | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu | |
| - macos | |
| runs-on: ${{ matrix.os }}-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: 1.24 | |
| - name: Test | |
| run: | | |
| go test -covermode=count -coverprofile=cov.out ./... | |
| go tool cover -func=cov.out | |
| # - name: Coverage | |
| # env: | |
| # COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # run: | | |
| # go install github.com/mattn/goveralls@latest | |
| # goveralls -coverprofile=cov.out -service=github |