Skip to content

Commit

Permalink
[build] add test that visidata does not drop any lines in input files…
Browse files Browse the repository at this point in the history
… that cannot seek backwards
  • Loading branch information
anjakefala committed Feb 19, 2024
1 parent c98ccfd commit e05e87c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,10 @@ jobs:
- name: Ensure VisiData can create completions
run: python -v dev/zsh-completion.py

- name: Ensure VisiData does not drop lines from RepeatFiles
run: |
NUMLINES=$(seq 10000 | vd -b | wc -l)
if ! [[ $NUMLINES -eq 10000 ]]; then
exit 1
fi

0 comments on commit e05e87c

Please sign in to comment.