Skip to content

Update catppuccin.tmux #9

Update catppuccin.tmux

Update catppuccin.tmux #9

Workflow file for this run

---
name: Tests
permissions:
contents: read
on:
pull_request:
paths-ignore:
- "*.md"
- "assets/**"
push:
paths-ignore:
- "*.md"
- "assets/**"
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
ubuntu:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install tmux
run: sudo apt-get update && sudo apt-get install -y tmux
- uses: actions/checkout@v4
- name: config & plugin
shell: bash
run: |
bash --version
tmux -V
./.github/scripts/test.bash ./catppuccin.tmux
old-bash:
name: "Old bash"
runs-on: ubuntu-latest
container:
image: bash:3.2.57
steps:
- uses: actions/checkout@v4
- name: config & plugin (old bash)
run: |
# No tmux available in this container
tmux() { return; }
export -f tmux
bash --version
./.github/scripts/test.bash ./catppuccin.tmux