File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ name : Checking code functionality
3+
4+ on : [push, pull_request]
5+
6+ jobs :
7+
8+ ci-qlty :
9+
10+ runs-on : ubuntu-latest
11+
12+ container : fedorapython/fedora-python-tox:latest
13+
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ tox-env : ["py312"]
18+
19+ steps :
20+
21+ - name : Checkout the codebase current state
22+ uses : actions/checkout@v4
23+
24+ - name : Install the base dependencies
25+ run : |
26+ python3 -m pip install --upgrade poetry tox
27+
28+ - name : Copy the default configuration file
29+ run : |
30+ mv fastapi_ecom/config/config.py.example fastapi_ecom/config/config.py
31+
32+ - name : Check the functionality of the code
33+ run : |
34+ tox -e ${{ matrix.tox-env }}
Original file line number Diff line number Diff line change 11# The database name
2- database = ""
2+ database = "test_db "
33
44# The username for the database user
5- username = ""
5+ username = "test_user "
66
77# The password for the database user
8- password = ""
8+ password = "test_pwd "
99
1010# The location of serving the database service
1111dtbsbhost = "localhost"
You can’t perform that action at this time.
0 commit comments