Skip to content

add the IsLoaded method to report whether the value has been loaded o… #5

add the IsLoaded method to report whether the value has been loaded o…

add the IsLoaded method to report whether the value has been loaded o… #5

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.18.x', '1.19.x', '1.20.x']
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Install tparse
run: go install github.com/mfridman/tparse@latest
- name: Test
run: go test -race -count=1 -timeout 30s -coverprofile=coverage.txt -covermode=atomic -json ./... | tparse -all -format markdown