Skip to content

Commit

Permalink
chore(ci): add timeout limit to testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Oakchris1955 committed Aug 3, 2024
1 parent 72cd1bd commit a4f1139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --all-features
- run: cargo test --verbose --all-features
- run: timeout 1m cargo test --verbose --all-features
test_no_default_features:
name: Run tests - No features enabled
runs-on: ubuntu-latest
Expand All @@ -36,5 +36,5 @@ jobs:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --no-default-features
- run: cargo test --verbose --no-default-features
- run: timeout 1m cargo test --verbose --no-default-features

0 comments on commit a4f1139

Please sign in to comment.