chore: bump github.com/charmbracelet/bubbletea from 1.2.2 to 1.2.3 #290
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/[email protected] | |
- 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/[email protected] | |
with: | |
go-version: stable | |
- name: Test | |
run: make test |