Skip to content

Add timeout to tests #157

Add timeout to tests

Add timeout to tests #157

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
timeout-minutes: 15
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose
- name: Lint
run: cargo clippy
- name: Run tests (Windows)
if: matrix.os == 'windows-latest'
run: cargo test --verbose -- --test-threads=1
- name: Run tests (Unix)
if: matrix.os != 'windows-latest'
run: cargo test --verbose