From e3141dc51068f46322eb470060ea42c883c5dd10 Mon Sep 17 00:00:00 2001 From: russell Date: Mon, 22 Jun 2026 09:34:40 -0400 Subject: [PATCH] ci: pin python:3.11 image so venv works --- .forgejo/workflows/ci.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index c18cde0..971c770 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -1,12 +1,15 @@ name: ci -'on': push +on: + push: + branches: [master, main] jobs: test: - runs-on: - - self-hosted - - build + runs-on: [self-hosted, linux, docker] + container: python:3.11 steps: - - name: checkout - uses: actions/checkout@v4 - - name: script - run: make test + - name: checkout + uses: actions/checkout@v4 + - name: install make + run: apt-get update -qq && apt-get install -y -qq --no-install-recommends make + - name: test + run: make test