Skip to content

Commit

Permalink
Github Action: add Python 3.11, 3.12; remove debug line
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-zdanevich committed May 19, 2024
1 parent 54d7d7f commit b53e589
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -24,7 +24,6 @@ jobs:
- name: Install Geeknote
run: |
pip install .
python -c 'import evernote2; print("------------------------ hi ---------------")' # TODO Debug line
- name: Running unit tests with pytest
run: |
pytest

0 comments on commit b53e589

Please sign in to comment.