style(status): use @catppuccin_status_background as background color #299
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: 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=3.2a-4ubuntu0.2 | |
- uses: actions/checkout@v4 | |
- name: Run Tests | |
shell: bash | |
run: | | |
bash --version | |
tmux -V | |
./run_tests.sh |