Skip to content

Added github action job steps to install python and dependencies #2

Added github action job steps to install python and dependencies

Added github action job steps to install python and dependencies #2

Workflow file for this run

name: Build and Deploy Code
on: [push, pull_request]
jobs:
my_first_job:
runs-on: ubuntu-20.04
steps:
- name: Pulling Git Repo
uses: actions/checkout@v4
- name: Install Python version 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Update pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt