Skip to content

Commit 3ed7d74

Browse files
committed
Update workflow for repository checkout and debug directory step
1 parent d5e2351 commit 3ed7d74

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/automated-tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
- main
1010

1111
jobs:
12-
debug:
12+
debug-and-test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- name: Check out code
15+
- name: Check out repository
1616
uses: actions/checkout@v2
17-
- name: Verify Directory Structure
17+
- name: Debug Directory Structure
1818
run: ls -R
19+
- name: Run automated tests
20+
run: |
21+
cd ./automated-testing
22+
# Run your test command here.

0 commit comments

Comments
 (0)