fix: update requirements.txt #32
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: workflow-test | |
# run lint flake8 and tests bot | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- name: install dependecies | |
run: | | |
pip install poetry | |
poetry install | |
- name: run linter | |
run: | | |
make lint |