build(deps): bump thiserror from 1.0.65 to 1.0.67 #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kalatori Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- stable | |
jobs: | |
check: | |
name: Cargo and TypeScript Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout sources | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 50 | |
submodules: recursive | |
- name: Initialize Git Submodules | |
run: git submodule update --init --recursive | |
- name: Verify directory structure | |
run: ls -R | |
- name: Install Rust stable toolchain | |
uses: actions-rs/[email protected] | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Install cargo-nextest | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: cargo-nextest | |
version: 0.9 | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Run Rust app in background with environment variables | |
run: | | |
export KALATORI_HOST="127.0.0.1:16726" | |
export KALATORI_SEED="bottom drive obey lake curtain smoke basket hold race lonely fit walk" | |
export KALATORI_RECIPIENT="5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY" | |
export KALATORI_REMARK="test" | |
cargo build | |
nohup cargo r & | |
- name: Wait for Rust app to start | |
run: sleep 120 | |
# Wait for the Rust app to start and then wait for the app to connect to RPC | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install Yarn package manager | |
run: npm install --global yarn | |
- name: Install dependencies | |
working-directory: ./tests/kalatori-api-test-suite | |
run: yarn install --network-timeout 100000 | |
- name: Run tests | |
working-directory: ./tests/kalatori-api-test-suite | |
env: | |
DAEMON_HOST: 'http://127.0.0.1:16726' | |
run: yarn test | |
# - name: Run Rust tests | |
# run: cargo nextest run |