Only report log matches repeats if --verbose-events. #8
This file contains 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: Push | |
on: | |
push: {} | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: {} | |
jobs: | |
compose-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: npm install | |
run: npm install | |
- name: Startup compose example | |
timeout-minutes: 2 | |
run: time docker compose -p dcmon-test -f examples/docker-compose.yaml up -d | |
- name: dcmon | |
timeout-minutes: 5 | |
run: | | |
time ./dcmon --no-tui --show-events all dcmon-test ./examples/checks.yaml | |
- name: dcmon final state | |
if: always() | |
timeout-minutes: 1 | |
run: | | |
export FORCE_COLOR=1 | |
./dcmon --static-once dcmon-test ./examples/checks.yaml |