Skip to content

Bump github.com/charmbracelet/bubbletea from 0.26.5 to 0.27.0 #32

Bump github.com/charmbracelet/bubbletea from 0.26.5 to 0.27.0

Bump github.com/charmbracelet/bubbletea from 0.26.5 to 0.27.0 #32

Workflow file for this run

name: build
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: test
run: |
go test -v -failfast -race -coverpkg=./... -covermode=atomic -coverprofile=coverage.txt ./...
- uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest'
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt