From 15099ee4c68df5b5ca829c105f78520b6af19948 Mon Sep 17 00:00:00 2001 From: knikolaou Date: Wed, 8 May 2024 16:42:19 +0200 Subject: [PATCH] Create CI isort --- .github/workflows/isort.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/isort.yml diff --git a/.github/workflows/isort.yml b/.github/workflows/isort.yml new file mode 100644 index 0000000..94dee8b --- /dev/null +++ b/.github/workflows/isort.yml @@ -0,0 +1,15 @@ +name: Run isort +on: + - push + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.11 + - uses: isort/isort-action@master + with: + requirementsFiles: "requirements.txt requirements-test.txt" \ No newline at end of file