This commit is contained in:
yihong0618 2023-03-03 20:43:55 +08:00
parent bc27e9900c
commit 07395d9b43

View File

@ -18,7 +18,9 @@ jobs:
python-version: '3.9' python-version: '3.9'
cache: 'pip' # caching pip dependencies cache: 'pip' # caching pip dependencies
- name: Check formatting (black) - name: Check formatting (black)
run: black . --check run: |
pip install black
black . --check
- name: install python requirements - name: install python requirements
run: pip install -r requirements.txt run: pip install -r requirements.txt
- name: make test ebook - name: make test ebook