forked from python-cmd2/cmd2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
918200c
commit f456b80
Showing
91 changed files
with
3,001 additions
and
2,122 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
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
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
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
Oops, something went wrong.