From 7c3a14a945a9d9c5f4fdf9dfcf3df6fc1cdc219c Mon Sep 17 00:00:00 2001 From: Claudia Date: Mon, 9 Feb 2026 11:33:37 +0100 Subject: [PATCH] ci: use ubuntu-latest with python container --- .forgejo/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index f1b1236..3916beb 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -3,8 +3,13 @@ on: [push, pull_request] jobs: test: - runs-on: python + runs-on: ubuntu-latest + container: + image: python:3.11-slim steps: + - name: Install git + run: apt-get update && apt-get install -y git + - uses: https://github.com/actions/checkout@v4 - name: Install dependencies