Skip to content

Bump github.com/charmbracelet/lipgloss from 0.11.0 to 0.12.1 #31

Bump github.com/charmbracelet/lipgloss from 0.11.0 to 0.12.1

Bump github.com/charmbracelet/lipgloss from 0.11.0 to 0.12.1 #31

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -coverprofile coverage.out ./...
- name: Update coverage badge
uses: ncruces/go-coverage-report@main
with:
coverage-file: coverage.out
reuse-go: true
amend: true