Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lusingander committed Oct 1, 2024
1 parent 6f51850 commit 717f759
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/vrt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: vrt

on:
push:
branches:
- 'ci-test'

jobs:
vrt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# https://github.com/lusingander/ttyd#install-on-linux
- name: Install ttyd
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake git libjson-c-dev libwebsockets-dev
git clone https://github.com/lusingander/ttyd.git
cd ttyd && mkdir build && cd build
cmake ..
make && sudo make install
- name: Install vhs
run: |
go install github.com/lusingander/vhs@latest
- name: Check version
run: |
ttyd --version
vhs --version

0 comments on commit 717f759

Please sign in to comment.