Skip to content

Commit

Permalink
project-work5: small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
imbilalbutt committed Dec 20, 2023
1 parent 4074d2f commit 5c61807
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/pipeline-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,23 @@ jobs:
steps:
- run: echo The CI/CD is about to begin!
# Checkout repository
- name: Checkout
uses: actions/checkout@v4
- name: Step#1- Checkout
uses: actions/checkout@v3
with:
path: main

# Install python
- name: Step#1- Setup Python 3.11
uses: actions/setup-python@v4
- name: Step#2- Setup Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.11'

# Install dependencies
- name: Step#2- Install dependencies
run: pip install -r requirements.txt
- name: Step#3- Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
echo "Environment is set up!"
job2_build:
runs-on: ubuntu-latest
Expand Down
File renamed without changes.

0 comments on commit 5c61807

Please sign in to comment.