Skip to content

feat: updated version of Python to 3.8 #3

feat: updated version of Python to 3.8

feat: updated version of Python to 3.8 #3

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
architecture: 'x64'
- name: Display Python version
run: python -c "import sys; print(sys.version)"