Skip to content

fix(deps): update module github.com/charmbracelet/bubbletea to v2 #22

fix(deps): update module github.com/charmbracelet/bubbletea to v2

fix(deps): update module github.com/charmbracelet/bubbletea to v2 #22

Workflow file for this run

name: Race Detection
permissions:
contents: read
on:
push:
branches-ignore:
- '**-wip'
pull_request:
jobs:
race:
runs-on: ubuntu-latest
# Pull requests from the same repository won't trigger this checks as they were already triggered by the push
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26'
cache: true
cache-dependency-path: '**/go.sum'
- name: Run tests with race detection
run: make race GOTEST_FLAGS="-v"