This repository was archived by the owner on Mar 6, 2025. It is now read-only.
chore(deps): bump github.com/charmbracelet/bubbletea from 1.3.3 to 1.3.4 #1209
Workflow file for this run
This file contains hidden or 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: coverage | |
| on: [push, pull_request] | |
| jobs: | |
| coverage: | |
| strategy: | |
| matrix: | |
| go-version: [~1.20, ^1] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| GO111MODULE: "on" | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Coverage | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| go test -race -covermode atomic -coverprofile=profile.cov ./... | |
| go install github.com/mattn/goveralls@latest | |
| goveralls -coverprofile=profile.cov -service=github |