Skip to content

Bump github.com/charmbracelet/bubbletea from 0.24.2 to 0.25.0 (#49) #127

Bump github.com/charmbracelet/bubbletea from 0.24.2 to 0.25.0 (#49)

Bump github.com/charmbracelet/bubbletea from 0.24.2 to 0.25.0 (#49) #127

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Install go mods
run: go mod download
- name: go build
run: go build -v
- name: go vet
run: go vet ./...
- name: go tests
run: go test ./... -v