From 6cdec74b01eb3e39bf82e301667e2eccb6b82852 Mon Sep 17 00:00:00 2001 From: Furkan Date: Sat, 12 Oct 2024 13:28:31 +0300 Subject: [PATCH] refactor: update test-python.yml --- .github/workflows/test-python.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 7291827..f73b820 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -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 @@ -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