FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-libconfig/.github/workflows/test.yml at master · cnangel/python-libconfig · GitHub
cnangel
/
python-libconfig
Public
Notifications
You must be signed in to change notification settings
Fork
12
Star
10
Code
Issues
3
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-libconfig
/
.github
/
workflows
/
test.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
29 lines (27 loc) · 735 Bytes
Breadcrumbs
python-libconfig
/
.github
/
workflows
/
test.yml
Copy path
File metadata and controls
29 lines (27 loc) · 735 Bytes
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
---
name
:
test
on
:
push
:
branches
:
-
"
*
"
tags-ignore
:
-
"
*
"
pull_request
:
workflow_dispatch
:
jobs
:
test
:
name
:
"
Python Build & Test
"
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v6
-
name
:
Install Dependencies
run
:
|
sudo apt update
sudo apt install -y libconfig++-dev libboost-python-dev python3-dev python3-setuptools build-essential
-
name
:
Build
run
:
python3 setup.py build
-
name
:
Test
run
:
|
BUILD_DIR=$(ls -d build/lib.*-*-* 2>/dev/null | head -1)
[ -n "$BUILD_DIR" ] || (echo "Error: build directory not found" && exit 1)
PYTHONPATH=$BUILD_DIR python3 -m unittest tests.test -v
Back
|
FazBrowse Home
|
New Git URL