Skip to content

Add TUI functionality #1

Add TUI functionality

Add TUI functionality #1

Workflow file for this run

name: build
# This workflow is triggered only after the "CI" workflow completes
on:
# workflow_run:
# workflows: ["CI"] # The name of the workflow from CI.yml
# types:
# - completed
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
# if: github.event.workflow_run.conclusion == 'success'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Build
run: make build
- name: Run tests
run: make test
- name: Install
run: make install
- name: Clean up
run: make clean