FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-ddd/.github/workflows/pytest.yml at main · XyLearningProgramming/python-ddd · GitHub
XyLearningProgramming
/
python-ddd
Public
forked from
pgorecki/python-ddd
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-ddd
/
.github
/
workflows
/
pytest.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
49 lines (43 loc) · 1.08 KB
Breadcrumbs
python-ddd
/
.github
/
workflows
/
pytest.yml
Copy path
File metadata and controls
49 lines (43 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name
:
Run tests
on
:
push
:
branches
:
[ "main" ]
pull_request
:
branches
:
[ "main" ]
permissions
:
contents
:
read
jobs
:
build
:
runs-on
:
ubuntu-latest
services
:
postgres
:
image
:
postgres:latest
env
:
POSTGRES_USER
:
postgres
POSTGRES_PASSWORD
:
password
POSTGRES_DB
:
test_db
ports
:
-
5432:5432
options
:
>-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps
:
-
uses
:
actions/checkout@v3
-
name
:
Set up Python 3.10
uses
:
actions/setup-python@v3
with
:
python-version
:
"
3.10
"
-
name
:
Install Poetry
run
:
|
pip install poetry
poetry self update
-
name
:
Install dependencies
run
:
poetry install
-
name
:
Run all tests
run
:
|
poetry run pytest src
env
:
#
The hostname used to communicate with the PostgreSQL service container
DATABASE_URL
:
postgresql://postgres:password@localhost:5432/test_db
Back
|
FazBrowse Home
|
New Git URL