Skip to content

bug: update mangaplus api #138

bug: update mangaplus api

bug: update mangaplus api #138

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
py-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install deps
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
- name: flake8 check
run: make flake8-check
- name: mypy check
run: make mypy-check
- name: tests
run: make tests