Skip to content

Commit

Permalink
adding more pipeline steps
Browse files Browse the repository at this point in the history
  • Loading branch information
elman23 committed Sep 26, 2023
1 parent 4774eb7 commit 12f6070
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,11 @@ jobs:
steps:
- name: Pulling git repo
uses: actions/checkout@v2
- name: Say hi
run: echo "Hello, there."
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Update PIP
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt

0 comments on commit 12f6070

Please sign in to comment.