Skip to content

fix(deps): update module github.com/charmbracelet/lipgloss to v2 #1548

fix(deps): update module github.com/charmbracelet/lipgloss to v2

fix(deps): update module github.com/charmbracelet/lipgloss to v2 #1548

Workflow file for this run

---
name: test
on:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
with:
go-version: '1.26'
- name: Lint
if: ${{ matrix.os == 'ubuntu-latest' }}
run: make lint
- name: Test
run: make test
- name: Publish coverage to coveralls.io
uses: shogo82148/actions-goveralls@25f5320d970fb565100cf1993ada29be1bb196a1 # v1
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
path-to-profile: coverage.out
- name: Build
run: go build ./cmd/gitlab-ci-pipelines-exporter