Skip to content

fix: fixed pipeline build #3

fix: fixed pipeline build

fix: fixed pipeline build #3

Workflow file for this run

name: Build and test app
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
lint-fastapi:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Linter
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
test-fastapi:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Test with tox
run: |
export ENVIRONMENT=test
cd backend
tox