gitlab-runner-tui 0.1.13

A terminal UI for monitoring GitLab CI runners
1
2
3
4
5
6
7
8
9
10
11
12
pre-commit:
  parallel: true
  commands:
    fmt:
      run: cargo fmt --check
    clippy:
      run: cargo clippy --all-targets -- -D warnings

pre-push:
  commands:
    test:
      run: cargo test