mention centrifuge-js version #2309
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: test | |
| on: [push, pull_request] | |
| jobs: | |
| typos: | |
| name: Typos Check | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Check for typos | |
| uses: crate-ci/[email protected] | |
| golangci: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| # Prevent duplicate builds on internal PRs. | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.x' | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: v1.64.8 | |
| args: --timeout 3m0s --verbose | |
| test: | |
| name: Test with Go ${{ matrix.go-version }} | |
| runs-on: ubuntu-latest | |
| # Prevent duplicate builds on internal PRs. | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| strategy: | |
| matrix: | |
| go-version: [1.25.2] | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Start services | |
| run: docker compose up -d --wait | |
| - name: Test | |
| run: make test-integration |