Skip to content

adding more pipeline steps #2

adding more pipeline steps

adding more pipeline steps #2

Workflow file for this run

name: Build and Deploy Code
on:
push:
branches:
- main
- staging
- test
- dev
pull_request:
branches:
- main
- staging
jobs:
job1:
runs-on: ubuntu-latest
steps:
- name: Pulling git repo
uses: actions/checkout@v2
- 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