Skip to content

Commit

Permalink
add ls
Browse files Browse the repository at this point in the history
  • Loading branch information
tcm5343 committed Mar 8, 2024
1 parent 3dfc35e commit 6d43b64
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/pull_request_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ on:
jobs:
cdd-e2e:
runs-on: ubuntu-latest
strategy:
matrix:
input_file:
- adj_list_cycle.txt
# - adj_list_no_cycle.txt
# strategy:
# matrix:
# input_file:
# - adj_list_cycle.txt
# - adj_list_no_cycle.txt
steps:
- name: checkout current branch
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
ref: ${{ github.GITHUB_REF_NAME }} # current branch name
path: './test/'
path: './test/' # this path avoid colisions with

- name: install task
uses: arduino/setup-task@v2
Expand All @@ -27,6 +27,7 @@ jobs:

- name: create graph input file
run: |
ls
echo -e "1 2\n2 3\n3 1" > test/testing/data/test.txt && cat test/testing/data/test.txt
- name: task run
Expand Down

0 comments on commit 6d43b64

Please sign in to comment.