diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-31 22:29:57 -0500 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-31 22:29:57 -0500 |
| commit | f456b802754c3d1095b488d670bebba21018d823 (patch) | |
| tree | bf7011f585a8a35ab4cc7ff98aaeebed4de87f84 /.github | |
| parent | 918200c02d392c17862fff81bbf58820ed15c725 (diff) | |
| download | cmd2-git-f456b802754c3d1095b488d670bebba21018d823.tar.gz | |
Add black for automatic code format
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/format.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml new file mode 100644 index 00000000..e622df2f --- /dev/null +++ b/.github/workflows/format.yml @@ -0,0 +1,28 @@ +# For documentation on GitHub Actions Workflows, see: +# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions +name: Format + +on: [push, pull_request] + +jobs: + lint: + strategy: + matrix: + os: [ubuntu-latest] + python-version: [3.9] + fail-fast: false + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 # https://github.com/actions/checkout + with: + # Only a single commit is fetched by default, for the ref/SHA that triggered the workflow. + # Set fetch-depth: 0 to fetch all history for all branches and tags. + fetch-depth: 0 # Needed for setuptools_scm to work correctly + - name: Set up Python + uses: actions/setup-python@v2 # https://github.com/actions/setup-python + with: + python-version: ${{ matrix.python-version }} + - name: Install python prerequisites + run: pip install -U --user pip setuptools setuptools-scm black + - name: Black + run: python -m black |
