Skip to content

Commit 4761a9b

Browse files
jackspirouclaude
andcommitted
fix: resolve CI workflow issues
- Remove duplicate lint job definition - Fix codecov action parameters (file -> files) - Add slug parameter to codecov action - Update README codecov badge with token for visibility 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 0fcfc76 commit 4761a9b

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -99,25 +99,10 @@ jobs:
9999
uses: codecov/codecov-action@v5
100100
with:
101101
token: ${{ secrets.CODECOV_TOKEN }}
102-
file: ./coverage.txt
102+
files: ./coverage.txt
103103
flags: unittests
104104
name: codecov-umbrella
105-
106-
lint:
107-
runs-on: ubuntu-latest
108-
steps:
109-
- uses: actions/checkout@v4
110-
111-
- name: Set up Go
112-
uses: actions/setup-go@v5
113-
with:
114-
go-version: '1.24'
115-
116-
- name: Run golangci-lint
117-
uses: golangci/golangci-lint-action@v8
118-
with:
119-
version: latest
120-
args: --timeout=5m
105+
slug: agentstation/tokenizer
121106

122107
build:
123108
runs-on: ubuntu-latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://pkg.go.dev/github.com/agentstation/tokenizer)
44
[![Go Report Card](https://goreportcard.com/badge/github.com/agentstation/tokenizer?style=flat-square)](https://goreportcard.com/report/github.com/agentstation/tokenizer)
55
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/agentstation/tokenizer/ci.yaml?style=flat-square)](https://github.com/agentstation/tokenizer/actions)
6-
[![codecov](https://codecov.io/gh/agentstation/tokenizer/branch/master/graph/badge.svg)](https://codecov.io/gh/agentstation/tokenizer)
6+
[![codecov](https://codecov.io/gh/agentstation/tokenizer/graph/badge.svg?token=EDNFP6DQLW)](https://codecov.io/gh/agentstation/tokenizer)
77
[![License](http://img.shields.io/badge/license-mit-blue.svg?style=flat-square)](https://raw.githubusercontent.com/agentstation/tokenizer/master/LICENSE)
88

99
A collection of high-performance tokenizer implementations in Go with a unified CLI interface.

0 commit comments

Comments
 (0)