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:
lint-and-test:
runs-on: ubuntu-latest
container: python:3.11-slim
defaults:
run:
working-directory: ./backend
steps:
- uses: actions/checkout@v4
- name: Install git
run: apt-get update && apt-get install -y git
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: actions/checkout@v4
- name: Install dependencies
run: |