Skip to content

feat: logging for ping result #96

feat: logging for ping result

feat: logging for ping result #96

Workflow file for this run

name: DCP
on:
push:
branches: [master]
pull_request:
branches: [master]
types: [opened, reopened, synchronize]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
dcp:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ "5.0.1", "5.1.3", "5.5.6", "6.0.5", "6.5.2", "6.6.6", "7.0.5", "7.1.6", "7.2.5", "7.6.1" ]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Install dependencies
run: go get .
- name: Test DCP
run: go test -run "^\QTestDcp\E$"
env:
CB_VERSION: ${{ matrix.version }}