Add CI timeout and verbose output for debugging
Some checks failed
CI / test (push) Failing after 2s
Some checks failed
CI / test (push) Failing after 2s
This commit is contained in:
@@ -3,6 +3,7 @@ on: [push, pull_request]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
@@ -13,10 +14,10 @@ jobs:
|
||||
rust-version: stable
|
||||
|
||||
- name: Build
|
||||
run: cargo build --all-features --verbose
|
||||
run: cargo build --verbose 2>&1
|
||||
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
run: cargo test --verbose 2>&1
|
||||
|
||||
- name: Check formatting
|
||||
run: cargo fmt -- --check
|
||||
run: cargo fmt -- --check 2>&1
|
||||
|
||||
Reference in New Issue
Block a user