Skip to content

Fixed #4 and #5 issues #17

Fixed #4 and #5 issues

Fixed #4 and #5 issues #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Bats
run: |
git submodule update --init --recursive
- name: Install Dependencies
run: sudo apt-get install -y tmux fzf wget yamllint
- name: Install yq
run: |
sudo wget https://github.com/mikefarah/yq/releases/download/v4.44.6/yq_linux_amd64 -O /usr/bin/yq
sudo chmod +x /usr/bin/yq
- name: Run Tests
run: test/bats/bin/bats test/tests_zmux.bats
- name: Cleanup Existing Tmux Sessions
run: tmux kill-server || true