Commit 6530b64 1 parent bbdf512 commit 6530b64 Copy full SHA for 6530b64
File tree 4 files changed +1836
-0
lines changed
4 files changed +1836
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v4
13
+ - name : Set up Python
14
+ uses : actions/setup-python@v5
15
+ with :
16
+ python-version : ' 3.12.3'
17
+ architecture : ' x64'
18
+ - name : Install dependencies
19
+ run : |
20
+ python -m pip install --upgrade pip setuptools wheel pipenv pytest pytest-cov
21
+ pip install pipenv
22
+ pipenv install --dev
23
+ - name : Run tests
24
+ run : |
25
+ pipenv run pytest --junitxml=junit/test-results.xml --cov=contract --cov-report=xml --cov-report=html
Original file line number Diff line number Diff line change
1
+ [[source ]]
2
+ name = " pypi"
3
+ url = " https://pypi.org/simple"
4
+ verify_ssl = true
5
+
6
+ [packages ]
7
+ algokit = " ==2.2.3"
8
+ puyapy = " >=2.2.0"
9
+ algopy = " *"
10
+ algorand-python-testing = " *"
11
+
12
+ [dev-packages ]
13
+ pytest = " *"
14
+ pytest-cov = " *"
15
+
16
+ [requires ]
17
+ python_version = " 3.12.3"
You can’t perform that action at this time.
0 commit comments