diff --git a/.github/workflows/python-ling.yaml b/.github/workflows/linting.yaml similarity index 86% rename from .github/workflows/python-ling.yaml rename to .github/workflows/linting.yaml index dcc650cbc2e1dc7c1c28387bcf5741fb982216d7..181fae4023176ab1307e941aefe2c0ca6e452e7b 100644 --- a/.github/workflows/python-ling.yaml +++ b/.github/workflows/linting.yaml @@ -8,7 +8,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - name: Set up Python 3.6 uses: actions/setup-python@v2 with: @@ -16,6 +17,8 @@ jobs: python-version: '3.6' # Optional - x64 or x86 architecture, defaults to x64 architecture: 'x64' + - name: find trailing whitespace + uses: harupy/find-trailing-whitespace@master - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/trailing-space.yaml b/.github/workflows/trailing-space.yaml deleted file mode 100644 index ad0efd82b5ed77be8796b7ad839685bc6b6269d3..0000000000000000000000000000000000000000 --- a/.github/workflows/trailing-space.yaml +++ /dev/null @@ -1,11 +0,0 @@ -name: Find trailing space - -on: [push, pull_request] - -jobs: - example: - name: Find Trailing Space - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: harupy/find-trailing-whitespace@master