Skip to content

issue

issue #21

Workflow file for this run

name: isssue
on:
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
run: |
PYTHON_VERSION=3.9
RUNNER_TOOL_CACHE=/home/azureuser/actions-runner/_work/_tool
mkdir -p ${RUNNER_TOOL_CACHE}/Python/${PYTHON_VERSION}/x64
tar -xzf Python-${PYTHON_VERSION}.tgz --directory ${RUNNER_TOOL_CACHE}/Python/${PYTHON_VERSION}/x64
touch ${RUNNER_TOOL_CACHE}/Python/${PYTHON_VERSION}/x64.complete
rm -f Python-${PYTHON_VERSION}.tgz
echo "${RUNNER_TOOL_CACHE}/Python/${PYTHON_VERSION}/x64/bin" >> $GITHUB_PATH
- name: Verify Python Installation
run: |
python --version