mirror of
https://github.com/ghndrx/shellmate.git
synced 2026-02-10 14:55:08 +00:00
- Add fallback Rich-based menu when Textual fails - Working chess game via simple terminal UI - Proper PTY/terminal handling for SSH - Added pytest test suite: - SSH auth tests (no-auth, accept any) - Mode selection tests (play/learn/watch) - Chess board widget tests - Move validation tests - Game state detection tests - CI workflow for GitHub Actions - Run tests with: pytest tests/ -v
63 lines
1.3 KiB
YAML
63 lines
1.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main, develop]
|
|
pull_request:
|
|
branches: [main, develop]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
|
|
- name: Install system dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y stockfish
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -e ".[dev]"
|
|
|
|
- name: Run linter
|
|
run: |
|
|
ruff check src/ tests/
|
|
|
|
- name: Run type checker
|
|
run: |
|
|
mypy src/ --ignore-missing-imports
|
|
continue-on-error: true
|
|
|
|
- name: Run tests
|
|
run: |
|
|
pytest tests/ -v --tb=short
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
needs: test
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build Docker image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
push: false
|
|
tags: shellmate:test
|
|
platforms: linux/amd64,linux/arm64
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|