File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 3939 run : |
4040 python main.py --commits -l test_list.txt -o output_commits.csv -t ${{ secrets.GITHUB_TOKEN }}
4141
42+ - name : List files after main.py (commits)
43+ run : |
44+ ls -l
45+ cat output_commits.csv || echo 'output_commits.csv not found'
46+
4247 - name : Compare output with reference CSV (commits)
4348 run : |
4449 python compare_csv.py output_commits.csv .github/workflows/reference_commits.csv
4752 run : |
4853 python main.py --contributors -l test_list.txt -o output_contributors.csv -t ${{ secrets.GITHUB_TOKEN }}
4954
55+ - name : List files after main.py (contributors)
56+ run : |
57+ ls -l
58+ cat output_contributors.csv || echo 'output_contributors.csv not found'
59+
5060 - name : Compare output with reference CSV (contributors)
5161 run : |
5262 python compare_csv.py output_contributors.csv .github/workflows/reference_contributors.csv
5565 run : |
5666 python main.py --issues -l test_list.txt -o output_issues.csv -t ${{ secrets.GITHUB_TOKEN }}
5767
68+ - name : List files after main.py (issues)
69+ run : |
70+ ls -l
71+ cat output_issues.csv || echo 'output_issues.csv not found'
72+
5873 - name : Compare output with reference CSV (issues)
5974 run : |
6075 python compare_csv.py output_issues.csv .github/workflows/reference_issues.csv
6378 run : |
6479 python main.py --pulls -l test_list.txt -o output_pulls.csv -t ${{ secrets.GITHUB_TOKEN }}
6580
81+ - name : List files after main.py (pulls)
82+ run : |
83+ ls -l
84+ cat output_pulls.csv || echo 'output_pulls.csv not found'
85+
6686 - name : Compare output with reference CSV (pulls)
6787 run : |
6888 python compare_csv.py output_pulls.csv .github/workflows/reference_pulls.csv
You can’t perform that action at this time.
0 commit comments