Merge pull request #18 from tobirohrer/feature/13-mypy #36
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: CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
checkup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: pip install .[dev] | |
- name: Run Tests with pytest | |
run: pytest ./tests | |
- name: Type checking with mypy | |
run: mypy building_energy_storage_simulation |