Skip to content

change version in workflow #3

change version in workflow

change version in workflow #3

name: first workflow
on: [push]
jobs:
check-python-version:
runs-on: ubuntu-latest
steps:
- name: use latest commit
uses: actions/checkout@v3
- name: use particular python version
uses: actions/setup-python@v3
with:
python-version: 3.13.0
- name: Check version
run: python --version