Feature/get peer messages #21
Workflow file for this run
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: before merge | |
on: | |
pull_request: | |
branches: | |
- slave | |
- master | |
jobs: | |
pre-merge: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
pipenv sync --system --dev | |
- run: echo """running mypy (static type checker)""" | |
- run: mypy ./src ./test | |
- run: echo """running pytest (unit test framework)""" | |
- run: pytest -v --cov=src.use_case --cov-report term-missing --cov-report term:skip-covered test |