File tree Expand file tree Collapse file tree 2 files changed +41
-1
lines changed
Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 1+
2+ name : run-tests
3+
4+ on :
5+ push :
6+ pull_request :
7+
8+ jobs :
9+ test-with-stac-fastapi :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v4
15+
16+ - name : Set up Python
17+ uses : actions/setup-python@v5
18+ with :
19+ python-version : " 3.11"
20+
21+ - name : Install dependencies
22+ run : |
23+ python -m pip install --upgrade pip
24+ pip install cwltest==2.6.20250818005349
25+
26+ - name : Run tests
27+ run : |
28+ cwltest --test tests/tests-mastering-eoap.yaml --tool cwltool --verbose --
Original file line number Diff line number Diff line change 1- # testing-framework
1+ # testing-framework
2+
3+ ## Installation
4+
5+ ```
6+ pip install "cwltest==2.6.20250818005349"
7+
8+
9+ Run the tests:
10+
11+ ```
12+ cwltest --test tests/tests-mastering-eoap.yaml --tool cwltool --verbose --
13+ ```
You can’t perform that action at this time.
0 commit comments