diff options
| author | Sanyam Khurana <sanyam.khurana01@gmail.com> | 2022-11-26 16:35:55 +0530 |
|---|---|---|
| committer | Paolo Melchiorre <paolo@melchiorre.org> | 2022-11-30 12:54:36 +0100 |
| commit | 7ade4ce3bce9d56948f6953bdc688086772772f7 (patch) | |
| tree | 281be71811ed348481d3b1837fa20f8fa92e6664 /.github | |
| parent | 5c1f9c41c43efa2b5adab89e873b846996caf67b (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.yml | 20 |
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 |
