changes for adding properties to callog to track rac timestamp value #127
Workflow file for this run
This file contains 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: allCov | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
odbTest: | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql | |
env: | |
MYSQL_ROOT_PASSWORD: 1-testDb | |
MYSQL_DATABASE: heratestdb | |
ports: | |
- 3306:3306 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Baseline for later scripted manual setup of go1.20 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.19 | |
- name: allCovSh | |
run: tests/unittest/allcover.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage web page | |
path: /home/runner/go/allcover.htm |