Fix Gitea Actions CI: use python:3.11-slim container instead of actions/setup-python
CI / lint-and-test (push) Failing after 21s

This commit is contained in:
2026-05-28 15:02:34 +02:00
parent 85db9d14a8
commit 5e6997cbd6
+4 -5
View File
@@ -9,17 +9,16 @@ on:
jobs: jobs:
lint-and-test: lint-and-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: python:3.11-slim
defaults: defaults:
run: run:
working-directory: ./backend working-directory: ./backend
steps: steps:
- uses: actions/checkout@v4 - name: Install git
run: apt-get update && apt-get install -y git
- name: Set up Python - uses: actions/checkout@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies - name: Install dependencies
run: | run: |