Add CI timeout and verbose output for debugging
Some checks failed
CI / test (push) Failing after 2s

This commit is contained in:
2026-01-31 23:21:22 +00:00
parent da119a5c31
commit 09843cbedf

View File

@@ -3,6 +3,7 @@ on: [push, pull_request]
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 15
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -13,10 +14,10 @@ jobs:
rust-version: stable rust-version: stable
- name: Build - name: Build
run: cargo build --all-features --verbose run: cargo build --verbose 2>&1
- name: Run tests - name: Run tests
run: cargo test --verbose run: cargo test --verbose 2>&1
- name: Check formatting - name: Check formatting
run: cargo fmt -- --check run: cargo fmt -- --check 2>&1