Update Input.f90 #44
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: Plotting tools | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install numpy matplotlib pylint | |
- name: Analysing the code with pylint | |
run: | | |
pylint sources/plot/library.py | |
echo 'pylint sources/plot/plot_energy.py' | |
pylint sources/plot/plot_energy.py | |
echo 'pylint sources/plot/plot_material.py' | |
pylint sources/plot/plot_material.py | |
echo 'pylint sources/plot/plot_initialization.py' | |
pylint sources/plot/plot_initialization.py | |
echo 'pylint sources/plot/plot_maps.py' | |
pylint sources/plot/plot_maps.py | |
echo 'pylint sources/plot/plot_distribution.py' | |
pylint sources/plot/plot_distribution.py |