From c39861943699aa0444842b0f1a57967672be0d2a Mon Sep 17 00:00:00 2001 From: murchu27 Date: Sun, 14 Jun 2026 10:56:48 -0400 Subject: [PATCH 1/2] chore: add CI --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a717622 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI + +on: + push: + branches: [main, master] + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + + - name: Install dependencies + run: pip install -e ".[dev]" + + - name: Ruff + run: ruff check . + + - name: Pytest + run: pytest \ No newline at end of file From 4223eed649fe8fa52d8fae6a5ba15ceadc85904c Mon Sep 17 00:00:00 2001 From: Michael Murphy Date: Sun, 14 Jun 2026 11:01:09 -0400 Subject: [PATCH 2/2] fix: remove deprecated license classifier --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 459d465..7d65f08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ license-files = ["LICENSE"] authors = [{ name = "Michael Murphy" }] keywords = ["pokemon", "tcg", "tcgp", "gemini", "deck-builder", "llm"] classifiers = [ - "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",