Skip to content

Commit

Permalink
Update smartsearch.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sneha9231 authored Sep 23, 2024
1 parent a2851ec commit 79f1546
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/smartsearch.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Smart Search CI

on:
push:
Expand All @@ -14,8 +14,17 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use API key
run: echo "API Key: ${{ secrets.API_KEY }}"
env:
API_KEY: ${{ secrets.API_KEY }}

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

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run your script
run: |
echo "API Key: ${{ secrets.API_KEY }}"

0 comments on commit 79f1546

Please sign in to comment.