Skip to content

chore(deps): bump github.com/charmbracelet/bubbletea from 0.27.1 to 1.1.1 #10

chore(deps): bump github.com/charmbracelet/bubbletea from 0.27.1 to 1.1.1

chore(deps): bump github.com/charmbracelet/bubbletea from 0.27.1 to 1.1.1 #10

Workflow file for this run

name: run
on:
push:
branches: [ "main" ]
pull_request:
paths:
- "go.*"
- "**/*.go"
- ".github/workflows/*.yml"
permissions:
contents: read
env:
GO_VERSION: '1.23.0'
jobs:
run:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: build
run: go build .
- name: run
run: |
cat assets/sample-tasks.txt | ./omm import
./omm 'test: a task'
./omm tasks
./.github/scripts/checknumtasks.sh "$(./omm tasks | wc -l | xargs)" 11