From cf8ba2f94531ca8944a877d950ba4a6387b61bc3 Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Wed, 9 Oct 2024 14:47:56 +0200 Subject: [PATCH] Add a first testing workflow --- .github/workflows/testing.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/testing.yml diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml new file mode 100644 index 0000000..b223d86 --- /dev/null +++ b/.github/workflows/testing.yml @@ -0,0 +1,17 @@ +name: Testing workflow + +on: [push, pull_request] + +jobs: + style: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: '3.8.10' + - name: "Install style checker" + run: pip install black + - name: "Run style check" + run: black --check . +