Skip to content

Commit 362626a

Browse files
authored
Add initial Github Action for CI (#208)
1 parent ba95702 commit 362626a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Run tests
2+
on:
3+
# Allow manually running from Github UI or API.
4+
workflow_dispatch:
5+
# to re-run status checks, mark as draft then ready_for_review.
6+
pull_request:
7+
types: [ready_for_review]
8+
jobs:
9+
pytest-ubuntu-22.04:
10+
# Ships with python 3.10. Using it saves time installing it.
11+
runs-on: ubuntu-22.04
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Install dependencies
15+
run: |
16+
# pip install -e ".[dev]"
17+
pip install fiftyone-db-ubuntu2204
18+
# - name: Test with pytest
19+
# run: |
20+
# pytest

0 commit comments

Comments
 (0)