Core: Fix up black workflow action

This commit is contained in:
Mike Auty
2022-12-07 21:09:32 +00:00
parent 02d6dbead7
commit 441be4535c
+13 -4
View File
@@ -1,4 +1,13 @@
- uses: psf/black@stable
with:
options: "--check --diff --verbose"
src: "./volatility3"
name: Black python linter
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable
with:
options: "--check --diff --verbose"
src: "./volatility3"