Skip to content

Commit

Permalink
Update ci-cd.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AquibPy authored Mar 13, 2024
1 parent 43e33ac commit 21fdc66
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,18 @@ jobs:
test:
name: Test FastAPI Application
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version:["3.9", "3.10", "3.11"]
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand All @@ -36,7 +39,7 @@ jobs:
MONGO_DBNAME: ${{ secrets.MONGO_DBNAME }}
MONGO_COLLECTION: ${{ secrets.MONGO_COLLECTION }}
run: |
echo "Google API Key: Succesfull!!!"
echo "Google API Key: Success!!!"
- name: Run Tests
run: |
Expand Down

0 comments on commit 21fdc66

Please sign in to comment.