diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-03-16 19:43:08 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-03-19 09:14:59 +0100 |
commit | bacd50c7a74af909dca251ae110f19664eb7f9bf (patch) | |
tree | 1018c7c7a3b8b3be11573c8a3b6d026a5d2c4d71 /.github/workflows/ci.yml | |
parent | da91ddef98460cf90c9916ccb2dc10f213cb7451 (diff) | |
download | weechat-bacd50c7a74af909dca251ae110f19664eb7f9bf.zip |
core: replace pylint3 by pylint in CI on Ubuntu 20.04
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68f324119..489299eed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: run: | sudo apt-get update -qq sudo apt-get purge php7.4-common - sudo apt-get --yes --no-install-recommends install devscripts equivs python3-pip libenchant-dev autopoint cmake lcov pkg-config libncursesw5-dev gem2deb libperl-dev python2-dev python3-dev libaspell-dev liblua5.3-dev tcl8.6-dev guile-2.0-dev libv8-dev libcurl4-gnutls-dev libgcrypt20-dev libgnutls28-dev zlib1g-dev curl libcpputest-dev php7.4-dev libphp7.4-embed libargon2-0-dev libsodium-dev pylint3 asciidoctor + sudo apt-get --yes --no-install-recommends install devscripts equivs python3-pip libenchant-dev autopoint cmake lcov pkg-config libncursesw5-dev gem2deb libperl-dev python2-dev python3-dev libaspell-dev liblua5.3-dev tcl8.6-dev guile-2.0-dev libv8-dev libcurl4-gnutls-dev libgcrypt20-dev libgnutls28-dev zlib1g-dev curl libcpputest-dev php7.4-dev libphp7.4-embed libargon2-0-dev libsodium-dev pylint asciidoctor sudo -H pip3 install --ignore-installed msgcheck - name: Test patches @@ -40,10 +40,10 @@ jobs: - name: Check Python scripts run: | - pylint3 --additional-builtins=_ doc/docgen.py - pylint3 tests/scripts/python/testapigen.py - pylint3 tests/scripts/python/testapi.py - pylint3 tests/scripts/python/unparse.py + pylint --additional-builtins=_ doc/docgen.py + pylint tests/scripts/python/testapigen.py + pylint tests/scripts/python/testapi.py + pylint tests/scripts/python/unparse.py - name: Build and run tests env: |