Skip to content

删除字典版本

删除字典版本 #44

Workflow file for this run

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