From 4227e7338ffe5801afb26a1ace70ba8dfb98d741 Mon Sep 17 00:00:00 2001 From: Cdm2883 Date: Sat, 10 Aug 2024 17:43:25 +0800 Subject: [PATCH] ci: fix python installing --- .gitea/workflows/build-demo.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-demo.yaml b/.gitea/workflows/build-demo.yaml index 34b3e8c..8ea380b 100644 --- a/.gitea/workflows/build-demo.yaml +++ b/.gitea/workflows/build-demo.yaml @@ -4,12 +4,14 @@ on: [push] jobs: build: runs-on: ubuntu-latest + container: + image: python:3.9 steps: - name: Checkout master uses: https://gitea.com/actions/checkout@v4 - - name: Install Python - run: sudo apt-get install python3.9 + - name: Check the Python installation + run: python3 --version - name: Install Material for MkDocs run: pip install mkdocs-material