Skip to content

Bump github.com/ydb-platform/ydb-go-sdk/v3 from 3.47.3 to 3.48.7 #44

Bump github.com/ydb-platform/ydb-go-sdk/v3 from 3.47.3 to 3.48.7

Bump github.com/ydb-platform/ydb-go-sdk/v3 from 3.47.3 to 3.48.7 #44

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
unit:
strategy:
fail-fast: false
matrix:
go-version: [ 1.18.x, 1.19.x, 1.20.x ]
os: [ ubuntu, windows, macOS ]
concurrency:
group: unit-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }}
cancel-in-progress: true
env:
OS: ${{ matrix.os }}-latest
GO: ${{ matrix.go-version }}
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Test
run: go test -race -coverprofile unit.txt -covermode atomic ./...
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
file: ./unit.txt
flags: unit,${{ matrix.os }},go-${{ matrix.go-version }}
name: unit