Skip to content

build(deps): bump github.com/gdamore/tcell/v2 from 2.13.1 to 2.13.2 in the go-dependencies group #523

build(deps): bump github.com/gdamore/tcell/v2 from 2.13.1 to 2.13.2 in the go-dependencies group

build(deps): bump github.com/gdamore/tcell/v2 from 2.13.1 to 2.13.2 in the go-dependencies group #523

Workflow file for this run

name: go-test
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
checks: write
jobs:
go-tests:
name: Go Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Go
uses: ./.github/workflows/go-setup
- name: Run Tests
run: go test -v -race -json ./... > test.json
- name: Upload test results
if: always()
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: test-results
path: test.json
annotate:
needs: go-tests
runs-on: ubuntu-latest
if: always()
steps:
- name: Download test results
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: test-results