Skip to content

Merge pull request #5 from yt-project/dependabot/github_actions/actio… #22

Merge pull request #5 from yt-project/dependabot/github_actions/actio…

Merge pull request #5 from yt-project/dependabot/github_actions/actio… #22

Workflow file for this run

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