-
Couldn't load subscription status.
- Fork 710
[CI] Tigron breakout 5: enable lint and tests on the CI #4047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| name: tigron | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - 'release/**' | ||
| pull_request: | ||
| paths: 'mod/tigron/**' | ||
|
|
||
| env: | ||
| GO_VERSION: 1.24.x | ||
| GOTOOLCHAIN: local | ||
|
|
||
| jobs: | ||
| lint: | ||
| timeout-minutes: 10 | ||
| name: "${{ matrix.goos }} ${{ matrix.os }} | go ${{ matrix.canary }}" | ||
| runs-on: ${{ matrix.os }} | ||
| defaults: | ||
| run: | ||
| shell: bash | ||
| strategy: | ||
| matrix: | ||
| include: | ||
| - os: ubuntu-24.04 | ||
| - os: macos-15 | ||
| - os: windows-2022 | ||
| - os: ubuntu-24.04 | ||
| goos: freebsd | ||
| - os: ubuntu-24.04 | ||
| canary: go-canary | ||
| steps: | ||
| - name: "Checkout project" | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
| with: | ||
| fetch-depth: 100 | ||
| - name: "Set GO env" | ||
| run: | | ||
| # If canary is specified, get the latest available golang pre-release instead of the major version | ||
| if [ "${{ matrix.canary }}" != "" ]; then | ||
| . ./hack/build-integration-canary.sh | ||
| canary::golang::latest | ||
| fi | ||
| - name: "Install go" | ||
| uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0 | ||
| with: | ||
| go-version: ${{ env.GO_VERSION }} | ||
| check-latest: true | ||
| - name: "Install tools" | ||
| run: | | ||
| cd mod/tigron | ||
| echo "::group:: make install-dev-tools" | ||
| make install-dev-tools | ||
| if [ "$RUNNER_OS" == macOS ]; then | ||
| brew install yamllint shellcheck | ||
| fi | ||
| echo "::endgroup::" | ||
| - name: "lint" | ||
| env: | ||
| NO_COLOR: true | ||
| run: | | ||
| if [ "$RUNNER_OS" != "Linux" ] || [ "${{ matrix.goos }}" != "" ]; then | ||
| echo "It is not necessary to run the linter on this platform (${{ env.RUNNER_OS }} ${{ matrix.goos }})" | ||
| exit | ||
| fi | ||
|
|
||
| echo "::group:: lint" | ||
| cd mod/tigron | ||
| export LINT_COMMIT_RANGE="$(jq -r '.after + "..HEAD"' ${GITHUB_EVENT_PATH})" | ||
| make lint | ||
| echo "::endgroup::" | ||
| - name: "test-unit" | ||
| run: | | ||
| echo "::group:: unit test" | ||
| cd mod/tigron | ||
| make test-unit | ||
| echo "::endgroup::" | ||
| - name: "test-unit-race" | ||
| run: | | ||
| echo "::group:: race test" | ||
| cd mod/tigron | ||
| make test-unit-race | ||
| echo "::endgroup::" | ||
| - name: "test-unit-bench" | ||
| run: | | ||
| echo "::group:: bench" | ||
| cd mod/tigron | ||
| make test-unit-bench | ||
| echo "::endgroup::" | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.