Skip to content

feat: add one hour timeout for real dataset #241

feat: add one hour timeout for real dataset

feat: add one hour timeout for real dataset #241

name: Unit Test
on:
push:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Setup Toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
- name: cargo test
run: cargo test --all-features # Runs unit and integration tests
- name: rustfmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --all --all-features --tests -- -D warnings