chore: move configuration specific to ocpp-server to its folder
[e-mobility-charging-stations-simulator.git] / .github / workflows / ci.yml
index b83544007ee5613addda76b3096c15afa0df752d..c3df8707b10176fac04c1ec35b640b50a765d8b3 100644 (file)
@@ -26,6 +26,7 @@ jobs:
       matrix:
         python:
           - 3.12
+    name: Build OCPP mock server with Python ${{ matrix.python }}
     runs-on: ubuntu-latest
     defaults:
       run:
@@ -33,7 +34,7 @@ jobs:
     steps:
       - uses: actions/checkout@v4
       - name: Setup Python ${{ matrix.python }}
-        uses: actions/setup-python@v4
+        uses: actions/setup-python@v5
         with:
           python-version: ${{ matrix.python }}
       - name: Install Poetry
@@ -41,7 +42,7 @@ jobs:
           python -m pip install --upgrade pip
           pip install poetry
       - name: Install Dependencies
-        run: poetry install
+        run: poetry install --no-root
       - name: Lint
         run: poetry run task lint
   build-simulator: