Skip to content

Fix type in read me README.md (#70) #225

Fix type in read me README.md (#70)

Fix type in read me README.md (#70) #225

Workflow file for this run

name: Tests
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: "3.9"
- python-version: "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
working-directory: ./backend
run: |
pip install -U poetry
- name: Cache Poetry virtualenv
uses: actions/cache@v3
id: cache
with:
path: ~/.virtualenvs
key: poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
poetry-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
working-directory: ./backend
run: |
poetry install --no-interaction --no-ansi
- name: Run tests
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}
ORIGINS: ${{ secrets.ORIGIN }}
TEST_SQLALCHEMY_DATABASE_URI: ${{ secrets.TEST_SQLALCHEMY_DATABASE_URI }}
run: |
make test-app