Skip to content

Merge pull request #3 from dblohm7/uninitialized_data #28

Merge pull request #3 from dblohm7/uninitialized_data

Merge pull request #3 from dblohm7/uninitialized_data #28

Workflow file for this run

name: Go
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.19
- name: Build
run: go build -v ./...
- name: Coverage
run: go test -coverprofile=coverage.txt -covermode=atomic
- name: Codecov
run: bash <(curl -s https://codecov.io/bash)
- name: Test
run: go test -v ./...