From 94e50ae5b57cef4f8ead1efd94117c1dd7cf2287 Mon Sep 17 00:00:00 2001 From: Akashdeep Dhar Date: Oct 14 2021 03:37:53 +0000 Subject: Merge pull request #37 from khallnayak/CI Adding github actions for enforcing styles with black --- diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..dde0b1a --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,15 @@ +name: run black +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 + with: + python-version: 3.8 + - name: Install black + run: pip install black + - name: Run black + run: black --check --diff . diff --git a/README.md b/README.md index e02d3d9..df03d6c 100644 --- a/README.md +++ b/README.md @@ -18,5 +18,3 @@ A collection of self-contained and well-documented issues for newcomers to start ``` 7. Run `index-easyfix-issues` being in the same directory to index the Easyfix relevant issues from a variety of Git forges. 8. Run `start-easyfix-server -p 9696 -4` to start the Easyfix server. - -Detailed documentation would arrive shortly. Inconvenience is regretted.