updated requirements-win.txt #22
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: BitDust p2p-app quality checks | |
on: | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
quality_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: clean venv | |
run: make clean venv | |
- name: check_no_debug | |
run: make check_no_debug |