ci: fix python installing

This commit is contained in:
Cdm2883 2024-08-10 17:43:25 +08:00
parent 899490e977
commit 4227e7338f

@ -4,12 +4,14 @@ on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: python:3.9
steps: steps:
- name: Checkout master - name: Checkout master
uses: https://gitea.com/actions/checkout@v4 uses: https://gitea.com/actions/checkout@v4
- name: Install Python - name: Check the Python installation
run: sudo apt-get install python3.9 run: python3 --version
- name: Install Material for MkDocs - name: Install Material for MkDocs
run: pip install mkdocs-material run: pip install mkdocs-material