Skip to content

fix: correct market section description in webpage #11

fix: correct market section description in webpage

fix: correct market section description in webpage #11

Workflow file for this run

name: ci/gh-actions/ruff
on:
push:
paths-ignore:
- "README.md"
pull_request:
paths-ignore:
- "README.md"
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff==0.14.14
- name: Lint
run: ruff check --no-fix .
- name: Format
run: ruff format --check .