FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sqlc-gen-python/.github/workflows/db.yml at main · simo7/sqlc-gen-python · GitHub
simo7
/
sqlc-gen-python
Public
forked from
sqlc-dev/sqlc-gen-python
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
sqlc-gen-python
/
.github
/
workflows
/
db.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
44 lines (41 loc) · 1.12 KB
Breadcrumbs
sqlc-gen-python
/
.github
/
workflows
/
db.yml
Copy path
File metadata and controls
44 lines (41 loc) · 1.12 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
name
:
db
on
:
push
:
branches
:
-
main
pull_request
:
jobs
:
build
:
name
:
test
runs-on
:
ubuntu-latest
services
:
postgres
:
image
:
postgres:11
env
:
POSTGRES_USER
:
postgres
POSTGRES_PASSWORD
:
postgres
POSTGRES_DB
:
postgres
ports
:
-
5432:5432
#
needed because the postgres container does not provide a healthcheck
options
:
--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps
:
-
uses
:
actions/checkout@v4
-
uses
:
actions/setup-python@v5
with
:
python-version
:
3.9
-
name
:
Install python dependencies
working-directory
:
./examples
run
:
|
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
-
name
:
Test python code
working-directory
:
./examples
env
:
PG_USER
:
postgres
PG_HOST
:
localhost
PG_DATABASE
:
postgres
PG_PASSWORD
:
postgres
PG_PORT
:
${{ job.services.postgres.ports['5432'] }}
run
:
|
pytest src/tests
Back
|
FazBrowse Home
|
New Git URL