Skip to content

Commit

Permalink
Merge pull request #12 from seamile/dev
Browse files Browse the repository at this point in the history
0.2.7
  • Loading branch information
seamile authored Apr 10, 2024
2 parents ddac147 + 79db194 commit 2cdbc54
Show file tree
Hide file tree
Showing 22 changed files with 2,689 additions and 825 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand All @@ -34,8 +34,8 @@ jobs:
- name: Lint with flake8
run: |
flake8 jsonfmt.py --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 jsonfmt.py --count --exit-zero --max-complexity=10 --max-line-length=90 --statistics
flake8 jsonfmt/*.py --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 jsonfmt/*.py --count --exit-zero --max-complexity=15 --max-line-length=120 --statistics
- name: Test with pytest
run: pytest test/test.py
run: pytest test/
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
pip install -r requirements.txt
- name: Test with pytest
run: pytest test/test.py
run: pytest test/

- name: Build package
run: python -m build
Expand Down
Loading

0 comments on commit 2cdbc54

Please sign in to comment.