Skip to content

Commit

Permalink
Test multiple python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
timotk committed Jul 29, 2023
1 parent 4c2addc commit 10bc6d5
Show file tree
Hide file tree
Showing 3 changed files with 155 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,16 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: 3.7
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
Expand Down
148 changes: 147 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ python = ">=3.7"
requests-html = "^0.10.0"
dateparser = "1.1.8"
tenacity = "^6.2.0"
pydantic = "^2.1.1"

[tool.poetry.dev-dependencies]
pytest = "^4.0"
Expand Down

0 comments on commit 10bc6d5

Please sign in to comment.