From e0a2b8089131306562257ea7581fe60088cacdbf Mon Sep 17 00:00:00 2001 From: Noah Stephen Haskell Date: Wed, 29 May 2024 13:18:19 -0500 Subject: [PATCH] Fix checkout and print cwd --- .github/workflows/test-in-new-recruit.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-in-new-recruit.yml b/.github/workflows/test-in-new-recruit.yml index 8de7425b..f17dec23 100644 --- a/.github/workflows/test-in-new-recruit.yml +++ b/.github/workflows/test-in-new-recruit.yml @@ -1,15 +1,17 @@ -name: Run Selenium On GitHub Action +name: Test in New Recruit on: [ push, pull_request ] jobs: scrape: runs-on: ubuntu-latest steps: - name: Checking out game system - uses: actions/checkout@v3 + uses: actions/checkout@v4 + - name: Checking out bscopy - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: nstephenh/bscopy + path: BSCopy - name: Setting up Python uses: actions/setup-python@v4 with: @@ -23,6 +25,11 @@ jobs: - name: Installing all necessary packages run: pip install webdriver-manager selenium + - name: ls + run: pwd & ls + - name: show home directory + run: cd ~ && pwd + - name: Running the Python script run: python3 BSCopy/system/tests/test_game.py