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 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",