Add TUI functionality #1
This file contains hidden or 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: 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 |