Skip to content

Commit

Permalink
Update pipself.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gowridurgad authored May 23, 2024
1 parent dc9fae9 commit 7f2fb38
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 deletions .github/workflows/pipself.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
name: issue858
name: Python Setup and Pip Test

on:
workflow_dispatch:

jobs:
python-program:
runs-on: ubuntu-latest
test:
runs-on: self-hosted

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: "pip"
python-version: "3.x"
- 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 7f2fb38

Please sign in to comment.