summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTom Forbes <tom@tomforb.es>2021-01-20 09:25:24 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-01-20 10:49:16 +0100
commitbd308260d846aa3624665a38460a9b4f08841f61 (patch)
tree0ad7db610d979fcb2f24fbbf440812b2c0db1b99 /.github
parentcfddca543a6813f595a5ab3eaa221ae620e12ced (diff)
downloaddjango-bd308260d846aa3624665a38460a9b4f08841f61.tar.gz
Used GitHub actions for isort and flake8 tests.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linters.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml
new file mode 100644
index 0000000000..17d42e227f
--- /dev/null
+++ b/.github/workflows/linters.yml
@@ -0,0 +1,38 @@
+name: Linters
+
+on:
+ pull_request:
+
+jobs:
+ flake8:
+ name: flake8
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Set up Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - run: pip3 install flake8
+ - name: flake8
+ uses: liskin/gh-problem-matcher-wrap@v1
+ with:
+ linters: flake8
+ run: flake8
+
+ isort:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Set up Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - run: pip3 install isort
+ - name: isort
+ uses: liskin/gh-problem-matcher-wrap@v1
+ with:
+ linters: isort
+ run: isort --check --diff django tests scripts