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

ci: gomu gomu no gatling workflow integration #957

ci: gomu gomu no gatling workflow integration

ci: gomu gomu no gatling workflow integration #957

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
linters:
name: Run linters
uses: ./.github/workflows/linters.yml
needs: changelog
rust_build:
name: Build Rust project
uses: ./.github/workflows/rust-build.yml
needs: changelog
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
benchmark:
name: Run benchmarks
uses: ./.github/workflows/benchmarks.yml
needs: rust_build