Merge pull request #3 from yt-project/dependabot/github_actions/actio… #20
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: Style Check | |
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
- workflow_call | |
jobs: | |
fstring: | |
name: FString Formatting (flynt) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
python-version: "3.10" | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Run flynt | |
run: tox -e fstring -- --fail-on-change --dry-run jupyter_libyt tests | |
sort_import: | |
name: Sort Import (isort) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
python-version: "3.10" | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Run isort | |
run: tox -e sort_import -- --check --diff jupyter_libyt tests | |
format: | |
name: Code Formatting (black) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
python-version: "3.10" | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Run black | |
run: tox -e format -- --check --diff jupyter_libyt tests | |
lint: | |
name: Linting (flake8) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
python-version: "3.10" | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Run flake8 | |
run: tox -e lint |