Skip to content

Commit

Permalink
Update pylint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniogi authored Sep 30, 2024
1 parent 9034cc8 commit da389f8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,22 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install MPI
run: |
sudo apt update
sudo apt install -y -q mpich libmpich-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy
pip install mpi4py
pip install pylint
- name: Analysing the code with pylint
run: |
Expand Down

0 comments on commit da389f8

Please sign in to comment.