Skip to content

chore(deps): bump github.com/charmbracelet/bubbletea from 1.1.0 to 1.3.3 #50

chore(deps): bump github.com/charmbracelet/bubbletea from 1.1.0 to 1.3.3

chore(deps): bump github.com/charmbracelet/bubbletea from 1.1.0 to 1.3.3 #50

Workflow file for this run

name: Check build
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ linux, darwin ]
goarch: [ amd64, arm64 ]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: |
make build GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }}