fix: ci testing update

This commit is contained in:
Oleksandr Pravdyvyi 2024-10-18 09:05:58 +03:00
parent b99d68077d
commit 5ec20123ea

View File

@ -59,3 +59,28 @@ jobs:
if: success() || failure() if: success() || failure()
run: | run: |
cargo clippy --release -- -D warnings cargo clippy --release -- -D warnings
test:
strategy:
matrix:
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
timeout-minutes: 60
name: test - ${{ matrix.crate }} - ${{ matrix.platform }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- uses: Swatinem/rust-cache@v2
- name: test mempool
if: success() || failure()
run: cargo test -p mempool
- name: test storage
if: success() || failure()
run: cargo test -p storage