chore(deps): Bump github.com/apache/arrow-go/v18 from 18.4.0 to 18.4.1 #95
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: | |
| branches: [main] | |
| jobs: | |
| test: | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 2 | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.2.1 | |
| args: --timeout 5m | |
| - name: Setup CloudQuery | |
| if: github.event_name == 'pull_request' | |
| uses: cloudquery/setup-cloudquery@v4 | |
| with: | |
| version: v3.27.1 | |
| - name: Get dependencies | |
| run: go get -t -d ./... | |
| - name: Build | |
| run: go build . | |
| - name: Test | |
| run: make test | |
| - name: gen | |
| if: github.event_name == 'pull_request' | |
| run: make gen | |
| - name: Fail if generation updated files | |
| if: github.event_name == 'pull_request' | |
| run: test "$(git status -s | wc -l)" -eq 0 || (git status -s; exit 1) |