diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 57e33ab9d2..78b7278a4c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,5 +27,5 @@ jobs: run: | python -m pip install --upgrade pip pip install -r linters-requirements.txt - - name: Lint using built-in script - run: bash shell/lint.sh \ No newline at end of file + - name: Lint with OpenFL-specific rules + run: bash shell/lint.sh diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 1c1dfe49c7..3f26c797fc 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -16,14 +16,12 @@ jobs: uses: actions/setup-python@v3 with: python-version: "3.8" - - name: Install dependencies + - name: Install linters run: | python -m pip install --upgrade pip pip install -r linters-requirements.txt - pip install . - - name: Lint with flake8 - run: | - flake8 --show-source + - name: Lint with OpenFL-specific rules + run: bash shell/lint.sh pytest-coverage: # from pytest_coverage.yml needs: lint