Skip to content

Commit e168463

Browse files
committed
ci: fix readme generation
1 parent c8d2add commit e168463

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ jobs:
2929
cargo install --force cargo-readme && cargo-readme -V
3030
)
3131
32+
- name: Install cargo-workspaces
33+
run: |
34+
cargo-workspaces -V || (
35+
cargo install --force cargo-workspaces && cargo-workspaces -V
36+
)
37+
3238
- name: Check READMEs
3339
run: ./ci/readme.sh -c
3440

ci/readme.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ fi
5454

5555
export -f make_readme
5656
export -f process_readme
57-
cargo workspaces exec --no-bail /bin/bash -c process_readme
57+
cargo workspaces exec --no-bail /usr/bin/env bash -c process_readme
5858

5959
exit $EXIT_CODE

lang-util/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
`lang-util` is a crate that implements utilities to parse and represent syntax trees.
77
It also provides error formatting facilities for parsers using
8-
[`lalrpop`](https://crates.io/crates/lalrpop) and [`logos`](https://crates.io/crates/logos).
8+
[`lalrpop`](https://crates.io/crates/lalrpop).
99

1010
This crate is tailored for use in the [`glsl-lang`](https://crates.io/crates/glsl-lang) crate,
1111
but you may use its utilities for implementing your own language parsers:

0 commit comments

Comments
 (0)