From 532dbdc60e3e861cb6e1063ea3dfc0299941957c Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Thu, 5 Mar 2026 18:46:30 +0100 Subject: [PATCH 1/3] Setup a GitHub action workflow to run basic checks --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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 000000000..ec48295da --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: Smoke Test + +on: + push: + branches: + - main + pull_request: + +jobs: + smoke-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-python@v6 + with: + python-version-file: .python-version + cache: 'pip' + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Run Django check + run: python manage.py check From 6e775741e821e8636df1aa6c5e35ef1eb01bf60e Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Thu, 5 Mar 2026 18:51:51 +0100 Subject: [PATCH 2/3] Reformat --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec48295da..5d3b59372 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,14 +10,14 @@ jobs: smoke-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 - - uses: actions/setup-python@v6 - with: - python-version-file: .python-version - cache: 'pip' + - uses: actions/checkout@v6 + - uses: actions/setup-python@v6 + with: + python-version-file: .python-version + cache: 'pip' - - name: Install dependencies - run: pip install -r requirements.txt + - name: Install dependencies + run: pip install -r requirements.txt - - name: Run Django check - run: python manage.py check + - name: Run Django check + run: python manage.py check From 9b9639fb4dbf7762c8b72a5f2d898a5b516ebdc4 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Fri, 6 Mar 2026 09:31:11 +0100 Subject: [PATCH 3/3] Rename workflow --- .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 5d3b59372..7c285d10b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Smoke Test +name: CI on: push: