Files
pdfplumber/.github/workflows/tests.yml
T
2021-12-16 22:22:54 -05:00

84 lines
2.1 KiB
YAML

name: Tests
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Configure pip caching
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt')}}-${{ hashFiles('**/requirements-dev.txt') }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Validate against psf/black
run: python -m black --check pdfplumber tests
- name: Validate against isort
run: python isort --check-only pdfplumber tests
- name: Validate against flake8
run: python -m flake8 pdfplumber tests
test:
needs: lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install ghostscript & imagemagick
run: sudo apt install ghostscript libmagickwand-dev
- name: Remove policy.xml
run: sudo rm /etc/ImageMagick-6/policy.xml
- name: Configure pip caching
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt')}}-${{ hashFiles('**/requirements-dev.txt') }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: |
python -m pytest --workers auto
python -m coverage html
- name: Upload code coverage
uses: codecov/codecov-action@v1.0.12
if: matrix.python-version == 3.8
- name: Build package
run: python setup.py build sdist