Bump the pip-dependencies group with 5 updates #221
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: Basic checks | |
on: [push, pull_request] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ '3.9', '3.11' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' # caching pip dependencies | |
- name: Install fresh pip | |
run: python -m pip install -U pip | |
- name: Install requirements # Check problems with dependencies | |
run: python -m pip install -r requirements.txt | |
- name: Init databases # Check basic scenario -- database initialization | |
working-directory: src | |
run: python flask_se.py init |