Merge pull request #11 from bandprotocol/add-weighted-median #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Aggregate Signals | |
on: | |
push: | |
jobs: | |
aggregate-signal: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.2' | |
- name: Install Python Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyyaml | |
- name: Aggregate Signals | |
run: python .github/scripts/aggregate_signals.py ./signals . | |
- name: Cache Rust-Script | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/rust-script | |
key: ${{ runner.os }}-rust-script-${{ hashFiles('.github/scripts/validate.rs') }} | |
restore-keys: | | |
${{ runner.os }}-rust-script-${{ hashFiles('.github/scripts/validate.rs') }} | |
- name: Setup Rust Toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Install Rust Script | |
run: cargo install rust-script | |
- name: Install Dependencies | |
run: sudo apt update && sudo apt-get install clang -y | |
- name: Validate Aggregated Signals | |
run: .github/scripts/validate.rs registry.json |