From 2dbf632b335be4fbad400d915ae10b721a3a7663 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:27:17 +0000 Subject: [PATCH 1/3] Initial plan From 3ee26e5ce572b7ab37d78bdbf447d7397514cf04 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:29:33 +0000 Subject: [PATCH 2/3] Add GitHub Actions CI workflow Co-authored-by: SupraSummus <15822143+SupraSummus@users.noreply.github.com> --- .github/workflows/ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 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..1ff4e00 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,32 @@ +name: CI + +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + cache: 'poetry' + + - name: Install Poetry + uses: snok/install-poetry@v1 + with: + virtualenvs-in-project: true + + - name: Install dependencies + run: poetry install + + - name: Run flake8 + run: poetry run flake8 . + + - name: Run tests + run: poetry run pytest From a60e92337e304982aba4a85e9e1e760419058e02 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:43:48 +0000 Subject: [PATCH 3/3] Use Python 3.13 and modern setup-python caching for poetry Co-authored-by: SupraSummus <15822143+SupraSummus@users.noreply.github.com> --- .github/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ff4e00..e012a8b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,17 +11,15 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install Poetry + run: pipx install poetry + - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.13' cache: 'poetry' - - name: Install Poetry - uses: snok/install-poetry@v1 - with: - virtualenvs-in-project: true - - name: Install dependencies run: poetry install