summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSanyam Khurana <sanyam.khurana01@gmail.com>2022-11-26 16:35:55 +0530
committerPaolo Melchiorre <paolo@melchiorre.org>2022-11-30 12:54:36 +0100
commit7ade4ce3bce9d56948f6953bdc688086772772f7 (patch)
tree281be71811ed348481d3b1837fa20f8fa92e6664 /.github
parent5c1f9c41c43efa2b5adab89e873b846996caf67b (diff)
Refs #1184 -- Removed linter steps in Github Actions
These are now run via the pre-commit integration.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 6baff0c3..4a85b26d 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -62,23 +62,3 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls --service=github
-
- lint:
- runs-on: ubuntu-20.04
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python
- uses: actions/setup-python@v2
- with:
- python-version: 3.8
- - name: Ensure latest setuptools
- run: |
- python -m pip install --upgrade pip setuptools
- - name: Install dependencies
- run: |
- python -m pip install tox
- - name: Run tox
- run: |
- python -m pip --version
- python -m tox --version
- python -m tox -e isort,flake8