Skip to content

Fix bad dependency spec in pyproject.toml, bump version #55

Fix bad dependency spec in pyproject.toml, bump version

Fix bad dependency spec in pyproject.toml, bump version #55

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 pytest deprecated
- name: Test with pytest
run: |
pip install pytest
pytest -xv -s
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 pytest deprecated
- name: Test with pytest
run: |
pip install pytest
pytest -xv -s