From 9c50dc73a3fe0e0a23e730b210e134ccb71cec2b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 9 Jan 2026 17:59:07 +0000 Subject: [PATCH 1/3] Initial plan From 284273ea9bba222b3413968d631cf3aeb391cb72 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 9 Jan 2026 18:01:42 +0000 Subject: [PATCH 2/3] Add GitHub CI workflow with mise-action to run tests Co-authored-by: DamianReeves <957246+DamianReeves@users.noreply.github.com> --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..cc6cd30 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: [ main, master ] + pull_request: + branches: [ main, master ] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup mise + uses: jdx/mise-action@v3 + + - name: Run tests + run: mise run test From b3d215cd5d248c4435541b4638413a578c23701f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 9 Jan 2026 18:03:41 +0000 Subject: [PATCH 3/3] Add explicit permissions to CI workflow for security Co-authored-by: DamianReeves <957246+DamianReeves@users.noreply.github.com> --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc6cd30..f65eda6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,8 @@ on: jobs: test: runs-on: ubuntu-latest + permissions: + contents: read steps: - name: Checkout code