Skip to content

Testing the installation of Python #3

Testing the installation of Python

Testing the installation of Python #3

name: Testing the installation of Python
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: install python
uses: actions/setup-python@v5
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.11'
# Optional - x64 or x86 architecture, defaults to x64
architecture: 'x64'
- name: Setup tmate session
if: success() || failure()
uses: mxschmitt/action-tmate@v3