Skip to content

fix(spinner): Clear the old text when using UpdateText with Spinner #1844

fix(spinner): Clear the old text when using UpdateText with Spinner

fix(spinner): Clear the old text when using UpdateText with Spinner #1844

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
if: "!contains(github.event.head_commit.message, 'autoupdate')"
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest ]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: 1.21
cache-dependency-path: go.sum
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -coverprofile="coverage.txt" -covermode=atomic -p 1 .
- name: Upload coverage to Codecov
if: success() && matrix.os == 'windows-latest'
uses: codecov/codecov-action@v3