diff options
author | Mango0x45 <thomasvoss@live.com> | 2020-09-12 12:41:37 +0000 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2020-09-12 12:41:37 +0000 |
commit | 4e6646fc26f1bef230f594432ff1e0903ff95779 (patch) | |
tree | cbcc3fa1416e432e381bf22e0bc726a18f6d8d42 /.github/workflows/black.yml | |
parent | a827809865adbf06302e3aa3bbc72a508510eca9 (diff) | |
download | steve-bot-4e6646fc26f1bef230f594432ff1e0903ff95779.tar steve-bot-4e6646fc26f1bef230f594432ff1e0903ff95779.tar.gz steve-bot-4e6646fc26f1bef230f594432ff1e0903ff95779.tar.bz2 steve-bot-4e6646fc26f1bef230f594432ff1e0903ff95779.tar.lz steve-bot-4e6646fc26f1bef230f594432ff1e0903ff95779.tar.xz steve-bot-4e6646fc26f1bef230f594432ff1e0903ff95779.tar.zst steve-bot-4e6646fc26f1bef230f594432ff1e0903ff95779.zip |
Trying github actions
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/black.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml new file mode 100644 index 0000000..fb422c8 --- /dev/null +++ b/.github/workflows/black.yml @@ -0,0 +1,14 @@ +name: Black Autoformatting + +on: + push: + pull_request: + +jobs: + format: + name: Black Autoformatting + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Black Check + uses: jpetrucciani/black-check@19.10b0 |