Skip to content

Bump github.com/charmbracelet/bubbletea from 0.26.6 to 1.2.4 #216

Bump github.com/charmbracelet/bubbletea from 0.26.6 to 1.2.4

Bump github.com/charmbracelet/bubbletea from 0.26.6 to 1.2.4 #216

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go-version: [1.22.0]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: |
go build -v ./...
- name: Test
run: |
go test -v ./...