Skip to content

Commit

Permalink
Create pipself.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gowridurgad authored May 20, 2024
1 parent e473fca commit af0ac8a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pipself.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Python Setup and Pip Test

on:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'

- name: Display Python version
run: python --version

- name: Check pip
run: |
which pip
pip --version

0 comments on commit af0ac8a

Please sign in to comment.