Skip to content

issue

issue #25

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.5
RUNNER_TOOL_CACHE=/home/azureuser/actions-runner/_work/_temp
mkdir -p ${RUNNER_TOOL_CACHE}/Python/${PYTHON_VERSION}/x64
curl -O https://www.python.org/ftp/python/3.9.5/Python-3.9.5.tgz
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
- name: Verify Python Installation
run: |
python3 --version