Move to pyproject, remove tox #357
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
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 dependencies | |
run: | | |
sudo sed -i 's/azure\.//' /etc/apt/sources.list | |
sudo apt-get update | |
python -m pip install --upgrade pip | |
sudo apt-get install python3.11-distutils | |
sudo apt-get install python3.12-distutils | |
sudo apt-get install python3.13-distutils | |
pip install tox tox-gh-actions | |
- name: Test with tox | |
run: tox | |
# - name: Test docs | |
# - uses: ammaraskar/sphinx-action@master | |
# with: | |
# docs-folder: "docs/" |