This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
Docs added #63
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: MangaReaderScraper | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# TODO: versions are executed concurrently, find a way to have both them | |
# in the same build | |
# NOTE: py3.8 fails die to lxml error | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# os: [ubuntu-latest] | |
# python-version: [3.7, 3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Up Python 3.7 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Test with Tox | |
run: tox -e py |