2022-07-29 14:36:09 +00:00
|
|
|
name: Monero Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
paths:
|
|
|
|
- "coins/monero/**"
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "coins/monero/**"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Only run these once since they will be consistent regardless of any node
|
|
|
|
unit-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
|
|
|
|
- name: Test Dependencies
|
|
|
|
uses: ./.github/actions/test-dependencies
|
|
|
|
|
|
|
|
- name: Run Unit Tests Without Features
|
|
|
|
run: cargo test --package monero-serai --lib
|
|
|
|
|
2022-07-30 08:49:55 +00:00
|
|
|
# Doesn't run unit tests with features as the tests workflow will
|
2022-07-29 14:36:09 +00:00
|
|
|
|
|
|
|
integration-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# Test against all supported protocol versions
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
version: [v0.17.3.2, v0.18.0.0]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
|
|
|
|
- name: Test Dependencies
|
|
|
|
uses: ./.github/actions/test-dependencies
|
|
|
|
with:
|
|
|
|
monero-version: ${{ matrix.version }}
|
|
|
|
|
|
|
|
- name: Run Integration Tests Without Features
|
2022-07-30 08:49:55 +00:00
|
|
|
# https://github.com/rust-lang/cargo/issues/8396
|
2022-07-29 14:36:09 +00:00
|
|
|
run: cargo test --package monero-serai --test '*'
|
|
|
|
|
|
|
|
- name: Run Integration Tests
|
2022-07-30 08:49:55 +00:00
|
|
|
# Don't run if the the tests workflow also will
|
2022-08-01 02:45:53 +00:00
|
|
|
if: ${{ matrix.version != 'v0.18.0.0' }}
|
2022-07-30 08:49:55 +00:00
|
|
|
run: |
|
|
|
|
cargo test --package monero-serai --all-features --test '*'
|
|
|
|
cargo test --package serai-processor monero
|