Merge pull request #46 from YushiOMOTE/remove-cargo-lock #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: readme | |
on: [push] | |
jobs: | |
readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Re-generate README.md | |
run: ./readme.sh | |
- name: Check uncommitted | |
run: git diff --quiet | |
- name: Message on failure | |
if: failure() | |
run: | | |
echo "::error file=README.md,title=Regenerate README::We generate README.md from docs (lib.rs) by readme.sh. Please run readme.sh locally and commit the change" |