Merge pull request #38 from microbiomedata/37-configure-gha-to-run-bl… #8
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
# GitHub Actions workflow that checks the format of the source code. | |
# Reference: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions | |
name: Check source code format | |
on: | |
pull_request: { branches: [ main ] } | |
push: { branches: [ main ] } | |
workflow_dispatch: { } | |
jobs: | |
check-source-code-format: | |
name: Check source code format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out commit # Docs: https://github.com/actions/checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python # Docs: https://github.com/actions/setup-python | |
uses: actions/setup-python@v5 | |
with: | |
# Specify a Python version that satisfies the `tool.poetry.dependencies.python` | |
# version requirement specified in `pyproject.toml`. | |
python-version: '3.9' | |
- name: Install Poetry # Docs: https://github.com/snok/install-poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies # Docs: https://python-poetry.org/docs/cli/#install | |
run: poetry install --no-interaction | |
- name: Check source code format | |
run: poetry run black --check . |