Skip to content

Commit a55f0f4

Browse files
committed
adds CI
1 parent ad97ce2 commit a55f0f4

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

.github/workflows/run-tests.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 --

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
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+
```

0 commit comments

Comments
 (0)