Skip to content

table test for graph #128

table test for graph

table test for graph #128

name: Pull Request Verification
on:
pull_request:
branches:
- main
jobs:
cdd-e2e:
runs-on: ubuntu-latest
# 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/' # this path avoid colisions with
- name: install task
uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- 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
run: |
cd test/
task INPUT_FILE="testing/data/test.txt" run