删除字典版本 #44
Workflow file for this run
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: Json and sha256sum check | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check json format | |
run: | | |
python -mjson.tool ./dictionary.json > /dev/null | |
- name: Check sha256sum | |
run: | | |
echo "The dictionary.json.sha256 should be:" | |
sha256sum dictionary.json | |
echo "Check results:" | |
sha256sum --check dictionary.json.sha256 |