Skip to content

realdatatype bug fix #10

realdatatype bug fix

realdatatype bug fix #10

Workflow file for this run

name: Release
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Run tests and generate coverage report
run: go test -v ./... -covermode=count -coverprofile=coverage.out
- name: Send coverage report to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.out # The relative path to the lcov coverage file.