Skip to content

Commit

Permalink
Fix checkout and print cwd
Browse files Browse the repository at this point in the history
  • Loading branch information
nstephenh committed May 29, 2024
1 parent a90591a commit e0a2b80
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test-in-new-recruit.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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

0 comments on commit e0a2b80

Please sign in to comment.