Skip to content

refactor: consolidate TUI code, add tests, centralize HTTP client, improve error handling #322

refactor: consolidate TUI code, add tests, centralize HTTP client, improve error handling

refactor: consolidate TUI code, add tests, centralize HTTP client, improve error handling #322

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: ['17', '21', '25']
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
cache: maven
- name: Build and test
run: ./mvnw -B verify