Skip to content

Commit f86f273

Browse files
committed
📝 Update README.md
1 parent 324a42a commit f86f273

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/bench.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,24 @@ env:
1414
CARGO_TERM_COLOR: always
1515

1616
jobs:
17-
benchmarks:
17+
changes:
1818
runs-on: ubuntu-latest
1919
if: github.actor != 'dependabot[bot]' && contains(github.event.commits.*.message, '[skip ci]') == false
20+
outputs:
21+
lang: ${{ steps.filter.outputs.lang }}
22+
steps:
23+
- uses: actions/checkout@v4
24+
- uses: dorny/paths-filter@v3
25+
id: filter
26+
with:
27+
filters: |
28+
lang:
29+
- 'crates/mq-lang/**''
30+
31+
benchmarks:
32+
needs: changes
33+
runs-on: ubuntu-latest
34+
if: ${{ needs.changes.outputs.lang == 'true' }}
2035
steps:
2136
- uses: actions/checkout@v4
2237
- uses: actions-rust-lang/setup-rust-toolchain@v1

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
[![ci](https://github.com/harehare/mq/actions/workflows/ci.yml/badge.svg)](https://github.com/harehare/mq/actions/workflows/ci.yml)
88
![GitHub Release](https://img.shields.io/github/v/release/harehare/mq)
99
[![codecov](https://codecov.io/gh/harehare/mq/graph/badge.svg?token=E4UD7Q9NC3)](https://codecov.io/gh/harehare/mq)
10+
[![CodSpeed Badge](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/harehare/mq)
1011

1112
mq is a command-line tool that processes Markdown using a syntax similar to jq.
1213
It's written in Rust, allowing you to easily slice, filter, map, and transform structured data.

0 commit comments

Comments
 (0)