From 6a5b4976b010939d61d57e10d295b2b2571573c2 Mon Sep 17 00:00:00 2001 From: hoangvv Date: Thu, 9 Jan 2025 16:48:45 +0700 Subject: [PATCH] update --- .github/workflows/build.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e907d5461..d027423fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,13 +5,19 @@ on: jobs: build: runs-on: self-hosted + strategy: + matrix: + python: + - 3.10.7 + - 3.12.7 steps: - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} - - name: Set up Python - uses: actions/setup-python@v5 + - name: Install python version + uses: gabrielfalcao/pyenv-action@v18 with: - python-version: '3.11.11' + default: "${{ matrix.python }}" + command: pip install -U pip - name: check python version run: python --version \ No newline at end of file