2023-07-21 18:01:58 +00:00
|
|
|
name: Processor Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
paths:
|
2023-07-24 06:56:58 +00:00
|
|
|
- "common/**"
|
|
|
|
- "crypto/**"
|
|
|
|
- "coins/**"
|
|
|
|
- "message-queue/**"
|
2023-07-27 18:19:03 +00:00
|
|
|
- "orchestration/message-queue/**"
|
2023-07-21 18:01:58 +00:00
|
|
|
- "processor/**"
|
2023-07-27 18:19:03 +00:00
|
|
|
- "orchestration/processor/**"
|
2023-07-21 18:01:58 +00:00
|
|
|
- "tests/docker/**"
|
|
|
|
- "tests/processor/**"
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
2023-07-24 06:56:58 +00:00
|
|
|
- "common/**"
|
|
|
|
- "crypto/**"
|
|
|
|
- "coins/**"
|
|
|
|
- "message-queue/**"
|
2023-07-27 18:19:03 +00:00
|
|
|
- "orchestration/message-queue/**"
|
2023-07-21 18:01:58 +00:00
|
|
|
- "processor/**"
|
2023-07-27 18:19:03 +00:00
|
|
|
- "orchestration/processor/**"
|
2023-07-21 18:01:58 +00:00
|
|
|
- "tests/docker/**"
|
|
|
|
- "tests/processor/**"
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install Build Dependencies
|
|
|
|
uses: ./.github/actions/build-dependencies
|
|
|
|
with:
|
|
|
|
github-token: ${{ inputs.github-token }}
|
|
|
|
|
|
|
|
- name: Run processor Docker tests
|
2023-08-14 15:59:23 +00:00
|
|
|
run: cd tests/processor && GITHUB_CI=true RUST_BACKTRACE=1 cargo test
|