Skip to content

fix(deps): update module github.com/charmbracelet/x/exp/teatest/v2 to… #92

fix(deps): update module github.com/charmbracelet/x/exp/teatest/v2 to…

fix(deps): update module github.com/charmbracelet/x/exp/teatest/v2 to… #92

Workflow file for this run

name: Test and coverage
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 2
- uses: actions/setup-go@v6.4.0
with:
go-version: '1.26'
- name: Run coverage
run: go test -coverpkg=./... ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v6
with:
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}