Merge pull request #51 from AtmegaBuzz/dependabot/pip/werkzeug-2.3.8 #30
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: OSMD BookCab run tests | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.10.9] | |
steps: | |
- uses: actions/checkout@main | |
- name: Initialize Python 3.10.9 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{matrix.python-version}} | |
- name: Install dependencies and run tests | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
python -m pytest |