Update bcrypt requirement from >=3.2.0 to >=5.0.0 #22
This file contains hidden or 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: Test simple-bcrypt | |
| on: [push,workflow_dispatch] | |
| jobs: | |
| test-bcrypt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| - run: pip install bcrypt | |
| - run: echo pass | python simplebcrypt.py | |
| - run: echo Done |