feat(deps): bump github.com/charmbracelet/bubbletea from 0.26.7-0.20240813155527-7782a600eb35 to 0.27.0 #1361
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
GO111MODULE: "on" | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ~1.21 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download Go modules | |
run: go mod download | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v -cover -timeout=30s ./... | |
snapshot: | |
uses: charmbracelet/meta/.github/workflows/snapshot.yml@main | |
secrets: | |
goreleaser_key: ${{ secrets.GORELEASER_KEY }} |