Skip to content

README fixes, add 0.1.6 whl #41

README fixes, add 0.1.6 whl

README fixes, add 0.1.6 whl #41

Workflow file for this run

name: Tinta Python CI tests
on:
push:
branches:
- main
tags:
- "*"
jobs:
build-older-python:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pytest
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest -xv --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
build-newer-python:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pytest
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest -xv --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html