Skip to content

Commit

Permalink
debug: add to debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BobBorges committed Nov 15, 2024
1 parent 50de525 commit f17a45e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/debug-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: ls after checkout
- run: ls -la
run: |
ls -la


job-a:
needs: [ls-job-1]
Expand All @@ -33,7 +36,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: touch a file
- run: touch a.txt
run: touch a.txt

job-b:
needs: [ls-job-1]
Expand All @@ -48,7 +51,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: touch a file
- run: touch b.txt
run: touch b.txt

job-c:
needs: [ls-job-1]
Expand All @@ -63,7 +66,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: touch a file
- run: touch c.txt
run: touch c.txt

ls-job-2:
needs: [job-a, job-b, job-c]
Expand All @@ -78,4 +81,4 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: ls after checkout
- run: ls -la
run: ls -la

0 comments on commit f17a45e

Please sign in to comment.