ci: add readme check to CI (#4039)

This commit is contained in:
Alice Ryhl
2021-08-13 15:05:09 +02:00
committed by GitHub
parent c0974bad94
commit f478647a8e
+13
View File
@@ -29,6 +29,7 @@ jobs:
- docs
- loom
- valgrind
- check-readme
steps:
- run: exit 0
@@ -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