Skip to content

Commit

Permalink
actions: do not run linter on older ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Oct 12, 2023
1 parent 4a5049a commit a9cb5e9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,21 @@ jobs:
if: matrix.flavour == 'oldstuff'

- name: Install Python webservers
run: pip3 install falcon starlette
run: pip3 install falcon starlette asgi_lifespan

- name: Install latest pylint
run: pip3 install -U pylint asgi_lifespan
run: pip3 install -U pylint
if: matrix.flavour != 'oldstuff'

- name: PHP linting
run: phpcs --report-width=120 .
working-directory: Nominatim
if: matrix.flavour != 'oldstuff'

- name: Python linting
run: python3 -m pylint nominatim
working-directory: Nominatim
if: matrix.flavour != 'oldstuff'

- name: PHP unit tests
run: phpunit ./
Expand Down

0 comments on commit a9cb5e9

Please sign in to comment.