perf(sources): simplify codebase, make tests 83% faster (32s -> 5.3s) in sources, 99.5% faster for TickSource tests (29s -> 0.13s), feeder package in 126s. #35
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: Linter | |
| on: | |
| pull_request: | |
| # paths-ignore makes the action run when the given paths are unchanged | |
| # See "Handling skipped but required checks" in | |
| # https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
| paths-ignore: ["**.go", "**.proto", "go.mod", "go.sum"] | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: skip-golangci | |
| run: | | |
| echo "job: golangci was skipped since Golang files were not changed." |