Remove filtered voltage. Add open circuit voltage and internal resist… #168
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: Run Tests | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false # don't cancel if a job from the matrix fails | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] # 3.12: pyfftw not yet supported | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
sudo apt install -y sqlite3 fftw3 libfftw3-dev | |
pip install -r app/requirements.txt | |
- name : Running Tests | |
run: | | |
./run_pylint.sh | |