Skip to content

Minor tweaks in setup.py: long_description_content_type, project_urls #8

Minor tweaks in setup.py: long_description_content_type, project_urls

Minor tweaks in setup.py: long_description_content_type, project_urls #8

Workflow file for this run

name: Run Test
on: [push, pull_request]
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
os: [ubuntu-latest]
include:
- python-version: '3.5'
os: ubuntu-20.04
- python-version: '3.6'
os: ubuntu-20.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r .github/requirements.txt
- name: Test with pytest
run: |
python setup.py test