Skip to content

fix(tui): always show task selection and allow editing tasks (#14) #31

fix(tui): always show task selection and allow editing tasks (#14)

fix(tui): always show task selection and allow editing tasks (#14) #31

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Check formatting
run: |
unformatted=$(gofmt -l .)
if [ -n "$unformatted" ]; then
echo "Files not formatted:"
echo "$unformatted"
exit 1
fi
- name: Vet
run: go vet ./...
- name: Test
run: go test -v ./...