chore: bump github.com/charmbracelet/bubbletea from 0.26.4 to 0.26.5 #222
Workflow file for this run
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: Test | |
on: | |
pull_request: | |
types: | |
- opened | |
- closed | |
- reopened | |
workflow_dispatch: | |
inputs: {} | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
# - ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Pull Source Code | |
uses: actions/checkout@v4.1.7 | |
- name: Install Linux-only Dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
# sudo apt install -y ubuntu-desktop-minimal | |
# sudo systemctl isolate graphical | |
# sudo systemctl start gdm3 | |
- name: Set-up Go | |
uses: actions/setup-go@v5.0.1 | |
with: | |
go-version: stable | |
- name: Test | |
run: make test |