Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,20 @@ on:
pull_request:
branches: [main]

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v6
with:
persist-credentials: false

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand All @@ -27,7 +32,7 @@ jobs:

- name: Lint with ruff
run: pip install ruff && ruff check src/ --target-version py310

- name: Run tests
run: |
python -m pytest tests/ -v --cov=src --cov-report=term-missing

28 changes: 0 additions & 28 deletions .github/workflows/npm-publish.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
persist-credentials: false

- name: Set up Python 3.11
uses: actions/setup-python@v6
Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,16 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[project.urls]
Homepage = "https://github.com/Coding-Dev-Tools/json2sql"
Documentation = "https://coding-dev-tools.github.io/json2sql/"
Repository = "https://github.com/Coding-Dev-Tools/json2sql"
Issues = "https://github.com/Coding-Dev-Tools/json2sql/issues"
Changelog = "https://github.com/Coding-Dev-Tools/json2sql/releases"

[project.optional-dependencies]
license = ["revenueholdings-license>=0.1.0"]
dev = [
Expand Down