Skip to content

Commit

Permalink
Create cosmosdb_ci_cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dhrumilp12 authored May 6, 2024
1 parent 9c7cee3 commit cfa5382
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/cosmosdb_ci_cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Cosmos DB CI/CD Pipeline

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: '3.8'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install azure-cosmos
- name: Run script
run: python run.py

0 comments on commit cfa5382

Please sign in to comment.