Skip to content

fix(deps): update module google.golang.org/api to v0.291.0 #552

fix(deps): update module google.golang.org/api to v0.291.0

fix(deps): update module google.golang.org/api to v0.291.0 #552

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26'
- name: Install dependencies
run: go mod download
- name: Run tests with coverage
env:
DEBUG: "1"
TESTCONTAINERS_RYUK_DISABLED: "true"
run: |
go test -v -failfast -parallel 4 -timeout 30m -coverprofile=coverage.out -covermode=atomic -coverpkg=github.com/Slach/clickhouse-dump/... ./...
- name: Upload coverage to Coveralls
if: github.repository == 'Slach/clickhouse-dump'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.out
flag-name: run-${{ github.run_id }}