Update dependency pylint to v3 #555
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: faucetagent tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Faucetagent tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out faucetagent source | |
uses: actions/checkout@v2 | |
- name: Installing dependencies | |
run: | | |
# Unfortunately this is really slow: | |
# sudo apt-get update && sudo apt-get -y upgrade | |
./dependencies.sh | |
./test-dependencies.sh | |
- name: Building and running tests | |
run: | | |
make | |
make codecheck | |
./faucetagent.py --version | |
sudo make test |