Skip to content

Commit

Permalink
ci: add readme check to CI (#4039)
Browse files Browse the repository at this point in the history
  • Loading branch information
Darksonn committed Aug 13, 2021
1 parent c0974ba commit f478647
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- docs
- loom
- valgrind
- check-readme
steps:
- run: exit 0

Expand Down Expand Up @@ -313,3 +314,15 @@ jobs:
RUSTFLAGS: --cfg loom --cfg tokio_unstable -Dwarnings
LOOM_MAX_PREEMPTIONS: 2
SCOPE: ${{ matrix.scope }}

check-readme:
name: Check README
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Verify that both READMEs are identical
run: diff README.md tokio/README.md

- name: Verify that Tokio version is up to date in README
working-directory: tokio
run: grep -q "$(sed '/^version = /!d' Cargo.toml | head -n1)" README.md

0 comments on commit f478647

Please sign in to comment.