Skip to content

Commit

Permalink
Create python-install.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Weather-Arkansas authored Dec 18, 2024
1 parent f253da1 commit 53a0bb3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/python-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Install Python

on: [push, pull_request]

jobs:
install-python:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Specify the Python version you want to install

- name: Verify Python installation
run: python --version

0 comments on commit 53a0bb3

Please sign in to comment.