test: add case that routegroup segment will be created correctly for … #2487
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: ci | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-go@v2 | |
| with: | |
| go-version: '^1.24' | |
| - run: go version | |
| - run: go install github.com/mattn/goveralls@latest | |
| - run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest | |
| - run: make check | |
| - run: make test | |
| - run: make build.docker | |
| - run: goveralls -coverprofile=profile.cov -service=github | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} |