Add new documentation for contribute new data #324
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: Lint | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- name: Ruff | |
if: success() || failure() | |
uses: pre-commit/[email protected] | |
with: | |
extra_args: ruff --all-files | |
- name: Black | |
if: success() || failure() | |
uses: pre-commit/[email protected] | |
with: | |
extra_args: black --all-files --verbose | |
- name: Blackdoc | |
if: success() || failure() | |
uses: pre-commit/[email protected] | |
with: | |
extra_args: blackdoc --all-files |