move test vhs recording to test/ directory #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: vhs | |
on: | |
push | |
jobs: | |
vhs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install fzf | |
run: sudo apt-get install -y fzf | |
- uses: charmbracelet/vhs-action@v1 | |
with: | |
path: 'test/test.tape' | |
- name: Diff, Bart, Diff | |
run: diff test/vhs-recording.txt test/expected/vhs-recording.txt | |
- name: Store recording | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vhs-recording | |
path: | | |
test/vhs-recording.txt | |
out.gif | |
retention-days: 3 |