Skip to content

Commit

Permalink
fix the workflow yaml file error on line 30
Browse files Browse the repository at this point in the history
  • Loading branch information
SparrowSurya committed Aug 22, 2024
1 parent 4e4ed65 commit 9623b72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Test api
run: python -m unittest discover
run: python -m unittest discover
1 change: 0 additions & 1 deletion api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from . import schemas, models, crud
from .config import get_settings
from .database import SessionLocal, engine, get_db

from .background_tasks import delete_expired_paste_task


Expand Down

0 comments on commit 9623b72

Please sign in to comment.