Skip to content

Commit

Permalink
Add back in testing python versions 3.11 and 3.12, change to linting …
Browse files Browse the repository at this point in the history
…with black.
  • Loading branch information
jackieblaum committed Oct 3, 2024
1 parent 623c454 commit 323cabf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- name: Check out the repository
Expand All @@ -23,17 +23,17 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
pip install black
pip install pytest pytest-cov
pip install .
- name: List repository root files (debug)
run: |
ls -al
- name: Lint with Pylint
- name: Lint with black
run: |
pylint eclipsebin
black --check --verbose .
- name: Run tests with pytest
run: |
Expand Down

0 comments on commit 323cabf

Please sign in to comment.