[ECO-2498] Drop price_feed
function and replace it with price_feed
view that returns market data as well
#85
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
--- | |
env: | |
PYTHON_VERSION: '3.10' | |
jobs: | |
check-formatting: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v3' | |
- name: 'Use nigthly toolchain' | |
run: rustup default nightly && rustup component add rustfmt | |
- name: 'Run cargo fmt' | |
run: cargo fmt --check | |
working-directory: rust | |
name: 'Rust' | |
'on': | |
pull_request: null | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: null | |
... |