mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 17:37:37 +00:00
31 lines
751 B
YAML
31 lines
751 B
YAML
name: test-dependencies
|
|
description: Installs test dependencies for Serai
|
|
|
|
inputs:
|
|
github-token:
|
|
description: "GitHub token to install Protobuf with"
|
|
require: true
|
|
default:
|
|
|
|
monero-version:
|
|
description: "Monero version to download and run as a regtest node"
|
|
required: false
|
|
default: v0.18.0.0
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install Build Dependencies
|
|
uses: ./.github/actions/build-dependencies
|
|
with:
|
|
github-token: ${{ inputs.github-token }}
|
|
|
|
- name: Install Foundry
|
|
uses: foundry-rs/foundry-toolchain@v1
|
|
with:
|
|
version: nightly
|
|
|
|
- name: Run a Monero Regtest Node
|
|
uses: ./.github/actions/monero
|
|
with:
|
|
version: ${{ inputs.monero-version }}
|