Skip to content

add class="antonym" for JMDict and Wiktextract #320

add class="antonym" for JMDict and Wiktextract

add class="antonym" for JMDict and Wiktextract #320

Workflow file for this run

name: "Gen"
on:
push:
pull_request:
# The branches below must be a subset of the branches above
schedule:
- cron: "33 1 * * 3"
jobs:
gen:
name: "Generated files check"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: cd and ls
run: |
cd ${{ github.workspace }}
ls -l
- name: Download dependencies
run: |
python -m pip install toml mako lxml
- name: Generate
run: ./scripts/gen.sh
- name: Check for changes
run: |
CHANGES=$(git diff --name-only HEAD --)
if [ -n "$CHANGES" ] ; then
echo "There are changes after running gen.sh:"
echo "$CHANGES"
git diff
exit 1
fi