From 9bb9d88b9dc2f709d54c8e5747eea9631230f9fd Mon Sep 17 00:00:00 2001 From: Sunyoung Yoo <17974113+YooSunYoung@users.noreply.github.com> Date: Mon, 2 Feb 2026 10:19:05 +0100 Subject: [PATCH 1/4] Minimum CI test for ess_template --- .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..0e79f5a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,32 @@ +name: CI + +env: + MIN_PYTHON_VERSION: '3.11' + +on: + push: + branches: + - main + pull_request: + +jobs: + formatting: + name: Formatting, static analysis and rendering test + runs-on: 'ubuntu-24.04' + env: + DUMMYPROJECTPATH: './test-dummy' + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ env.MIN_PYTHON_VERSION }} + - uses: pre-commit/action@v3.0.1 + with: + extra_args: --all-files + - uses: pre-commit-ci/lite-action@v1.1.0 + if: always() + with: + msg: Apply automatic formatting + - run: pip install copier + - run: copier copy ./ "${DUMMYPROJECTPATH}" + - run: tree ./ From 401bcc857b7f5ade391f3dd8a2a3112ed28ebc39 Mon Sep 17 00:00:00 2001 From: Sunyoung Yoo <17974113+YooSunYoung@users.noreply.github.com> Date: Mon, 2 Feb 2026 10:21:18 +0100 Subject: [PATCH 2/4] Show all files created at once with tree command --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e79f5a..a828e2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,4 +29,4 @@ jobs: msg: Apply automatic formatting - run: pip install copier - run: copier copy ./ "${DUMMYPROJECTPATH}" - - run: tree ./ + - run: tree "${DUMMYPROJECTPATH}" From 042b60063cd8b1ec5b1bcd4d1084263ee9b60051 Mon Sep 17 00:00:00 2001 From: Sunyoung Yoo <17974113+YooSunYoung@users.noreply.github.com> Date: Mon, 2 Feb 2026 10:22:49 +0100 Subject: [PATCH 3/4] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a828e2d..826b65a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,4 +29,4 @@ jobs: msg: Apply automatic formatting - run: pip install copier - run: copier copy ./ "${DUMMYPROJECTPATH}" - - run: tree "${DUMMYPROJECTPATH}" + - run: tree ./"${DUMMYPROJECTPATH}" -a From 24db0e720a1dd429d4640bedc607167f58189fe4 Mon Sep 17 00:00:00 2001 From: Sunyoung Yoo <17974113+YooSunYoung@users.noreply.github.com> Date: Mon, 2 Feb 2026 10:23:41 +0100 Subject: [PATCH 4/4] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 826b65a..609c173 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,4 +29,4 @@ jobs: msg: Apply automatic formatting - run: pip install copier - run: copier copy ./ "${DUMMYPROJECTPATH}" - - run: tree ./"${DUMMYPROJECTPATH}" -a + - run: tree "${DUMMYPROJECTPATH}" -a