fixed minor mistakes in the Readme text #148
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: Python package | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
# use Ubuntu 20.04 for Python 3.6 | |
exclude: | |
- os: "ubuntu-latest" | |
python-version: "3.6" | |
include: | |
- os: "ubuntu-20.04" | |
python-version: "3.6" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
# there are currently no dependencies | |
# pip install -r requirements.txt | |
- name: Install flake8 | |
run: pip install flake8 | |
- name: Lint with flake8 | |
run: | | |
# stop the build if flake reports any issues | |
flake8 . --statistics --show-source | |
- name: Install pytest | |
run: pip install pytest pytest-timeout | |
- name: Test with pytest | |
run: pytest --run-integration-tests |