add cache exists (with all implementation in each cache component) an… #9916
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: | |
| branches: | |
| - main | |
| pull_request: | |
| schedule: | |
| - cron: '0 0/2 * * *' # Every two hours | |
| jobs: | |
| test: | |
| if: ${{ github.repository == 'warpstreamlabs/bento' || github.event_name != 'schedule' }} | |
| runs-on: ubuntu-latest | |
| env: | |
| CGO_ENABLED: 1 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.25.x | |
| check-latest: true | |
| - name: Deps | |
| run: make deps && git diff-index --quiet HEAD || { >&2 echo "Stale go.{mod,sum} detected. This can be fixed with 'make deps'."; exit 1; } | |
| - name: Docs | |
| run: make docs && git diff-index --quiet HEAD || { >&2 echo "Stale docs detected. This can be fixed with 'make docs'."; exit 1; } | |
| - name: Test | |
| run: make test | |
| golangci-lint: | |
| if: ${{ github.repository == 'warpstreamlabs/bento' || github.event_name != 'schedule' }} | |
| runs-on: ubuntu-latest | |
| env: | |
| CGO_ENABLED: 0 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.25.x | |
| check-latest: true | |
| - name: Lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.10.0 | |
| build-docsite: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build Doc Site | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20.x | |
| - run: yarn --cwd ./website install && yarn --cwd ./website build |