From 7426a60f0fbce0d1a49db1befa1906c0c365b55a Mon Sep 17 00:00:00 2001 From: jeffery Date: Fri, 3 Mar 2023 19:07:21 +0800 Subject: [PATCH] add name --- .github/workflows/make_test_ebook.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/make_test_ebook.yaml b/.github/workflows/make_test_ebook.yaml index 55a40e9..768f281 100644 --- a/.github/workflows/make_test_ebook.yaml +++ b/.github/workflows/make_test_ebook.yaml @@ -11,11 +11,15 @@ jobs: testing: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - name: install python 3.9 + uses: actions/setup-python@v4 with: python-version: '3.9' cache: 'pip' # caching pip dependencies - - run: pip install -r requirements.txt - - run: python3 make.py --book_name test_books/animal_farm.epub --no_limit --test + - name: checkout code + uses: actions/checkout@v3 + - name: install python requirements + run: pip install -r requirements.txt + - name: make test ebook + run: python3 make.py --book_name test_books/animal_farm.epub --no_limit --test \ No newline at end of file