Skip to content

Update python-app.yml #65

Update python-app.yml

Update python-app.yml #65

Workflow file for this run

name: CI
on:
push:
branches: [ issue-819 ]
jobs:
build:
runs-on: [self-hosted]
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11.2'
- name: Check Python version with PowerShell
run: |
$pythonVersion = python --version
Write-Host "Python version is $pythonVersion"
shell: powershell