Feat: stored_rates() in Plain2Price #237
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
on: ["push", "pull_request"] | |
name: linting | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install Requirements | |
run: pip install -r requirements.txt | |
- name: Run black | |
run: black scripts tests | |
- name: Run flake8 | |
run: flake8 scripts tests | |
- name: Run isort | |
run: isort scripts tests |