Skip to content

Update aapi.py

Update aapi.py #250

Workflow file for this run

name: pixivpy
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
# python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: pip
cache-dependency-path: setup.cfg
python-version: "${{ matrix.python-version }}"
- name: Lint with pre-commit
uses: pre-commit/[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Run demo.py
run: python demo.py
- name: Install dependencies tests
run: |
pip install .[tests]
- name: Run tests
run: pytest