Skip to content

bumps fastapi to 0.92.0 (#393) #839

bumps fastapi to 0.92.0 (#393)

bumps fastapi to 0.92.0 (#393) #839

Workflow file for this run

name: Build Status
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
#- uses: actions/setup-node@v3.6.0
# with:
# node-version: "12.x"
# registry-url: "https://registry.npmjs.org"
- name: Install Python dependencies
run: |
pip install poetry
poetry install
- name: Run Test
run: |
poetry run pytest --no-cov
# - name: Install Node dependencies
# run: npm install
# - run: cp .env.example .env
# - name: Run Node lints
# run: npm run lint