Skip to content

Commit

Permalink
refactor: update test-python.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Oct 12, 2024
1 parent 472b30f commit 2a7e725
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
Expand All @@ -21,4 +20,6 @@ jobs:
pip install -r requirements.txt
- name: Run tests
run: python ./src/run_tests.py
run: |
cd ${{ github.workspace }}
python ./src/run_tests.py

0 comments on commit 2a7e725

Please sign in to comment.