Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

tests: run rpc tests on a single node #1043

tests: run rpc tests on a single node

tests: run rpc tests on a single node #1043

Workflow file for this run

---
name: Workflow - Pull Request
on:
workflow_dispatch:
pull_request:
branches: [main]
jobs:
changelog:
name: Enforce CHANGELOG
uses: ./.github/workflows/changelog.yml
configs-verifier:
name: Verify configs
uses: ./.github/workflows/configs-verifier.yml
linters:
name: Run linters
uses: ./.github/workflows/linters.yml
needs: [changelog, configs-verifier]
rust_build:
name: Build Rust project
uses: ./.github/workflows/rust-build.yml
needs: [changelog, configs-verifier]
madara_commands:
name: Test Madara commands
uses: ./.github/workflows/madara-commands.yml
needs: rust_build
linters_cargo:
name: Run Cargo linters
uses: ./.github/workflows/linters-cargo.yml
needs: rust_build
tests:
name: Run tests
uses: ./.github/workflows/tests.yml
needs: rust_build
# TODO: Unlock when rust tests are working on main
# coverage:
# name: Run coverage
# uses: ./.github/workflows/coverage.yml
# needs: [madara_commands, linters_cargo]
# https://github.com/keep-starknet-strange/madara/issues/1097
# benchmark:
# name: Run benchmarks
# uses: ./.github/workflows/benchmarks.yml
# needs: [rust_build, tests]
# permissions:
# # deployments permission to deploy GitHub pages website
# deployments: write
# # contents permission to update benchmark contents in gh-pages branch
# contents: write
# # post on the pull-request page
# pull-requests: write