Skip to content

chore(deps): bump serde_json from 1.0.133 to 1.0.134 in /code #2236

chore(deps): bump serde_json from 1.0.133 to 1.0.134 in /code

chore(deps): bump serde_json from 1.0.133 to 1.0.134 in /code #2236

Workflow file for this run

name: MBT
on:
push:
branches:
- main
paths:
- specs/quint/**
- code/**
- .github/workflows/mbt.yml
pull_request:
paths:
- specs/quint/**
- code/**
- .github/workflows/mbt.yml
jobs:
mbt-tests:
name: Run MBT Tests
runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: 0
CARGO_PROFILE_DEV_DEBUG: 1
CARGO_PROFILE_RELEASE_DEBUG: 1
RUST_BACKTRACE: short
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install Quint
run: npm install -g @informalsystems/quint
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install cargo-nextest
uses: taiki-e/install-action@cargo-nextest
- name: Build code
working-directory: code/crates/test/mbt
run: cargo nextest run -p informalsystems-malachitebft-test-mbt --all-features --no-run
- name: Current time as random seed for Quint
run: echo "QUINT_SEED=$(date +%s)" >> $GITHUB_ENV
- name: Run tests
working-directory: code/crates/test/mbt
run: cargo nextest run -p informalsystems-malachitebft-test-mbt --all-features