From 4cd1c85e2d8767261130bbb455b32c3b3f3cb998 Mon Sep 17 00:00:00 2001 From: AntoineRichard Date: Mon, 26 Aug 2024 20:50:22 +0200 Subject: [PATCH] toying around with github actions --- .github/workflows/black.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/black.yaml diff --git a/.github/workflows/black.yaml b/.github/workflows/black.yaml new file mode 100644 index 0000000..1b6efd1 --- /dev/null +++ b/.github/workflows/black.yaml @@ -0,0 +1,12 @@ +name: Lint + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: psf/black@stable + env: + LINE_LENGTH: 120 \ No newline at end of file