fix(deps): update module github.com/charmbracelet/lipgloss to v1 #215
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: ci | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**/*.go" | |
- "*.go" | |
- "go.mod" | |
- "go.sum" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- .github/workflows/ci.yml | |
- "**/*.go" | |
- "*.go" | |
- "go.mod" | |
- "go.sum" | |
permissions: | |
contents: read | |
jobs: | |
# By splitting testing into its own job will ensure the needs: clause for | |
# static-analysis runs without waiting on the entire matrix. Jobs that run | |
# against macos and windows are considerably slower | |
test: | |
uses: purpleclay/github/.github/workflows/go-test.yml@main | |
strategy: | |
matrix: | |
os: [ubuntu-24.04, macos-14, windows-2022] | |
with: | |
go-version: ${{ vars.GO_VERSION }} | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: golangci-lint | |
uses: dagger/dagger-for-github@v7 | |
with: | |
verb: call | |
module: github.com/purpleclay/daggerverse/golang | |
args: --src . lint | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} |