diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index 3a84c14..070b9dd 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -17,6 +17,22 @@ jobs: with: command: check args: --no-default-features + + readme: + name: Readme + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + components: cargo-readme + - name: Generate Readme for comparison + run: cargo readme > README_.md + - name: Check if readme is up to date + run: diff README.md README_.md test: name: Test Suite