HOTFIX: Added context api for token providers from old frontend #34
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: Python App Quality | |
on: | |
pull_request: | |
branches: | |
- dev | |
- main | |
jobs: | |
quality: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
cache-dependency-path: "backend/requirements.txt" | |
- name: Install dev dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r backend/requirements.txt | |
- name: Build the stack | |
run: docker-compose up -d |