Skip to content

fix: typo

fix: typo #368

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go_version: ["1.19", stable]
uses: charmbracelet/meta/.github/workflows/build.yml@main
with:
go_version: ${{ matrix.go_version }}
snapshot:
uses: charmbracelet/meta/.github/workflows/snapshot.yml@main
secrets:
goreleaser_key: ${{ secrets.GORELEASER_KEY }}
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Test
run: go test -failfast -race -coverpkg=./... -covermode=atomic -coverprofile=coverage.txt ./... -timeout 5m
- uses: codecov/codecov-action@v3
with:
file: ./coverage.txt