We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba95702 commit 362626aCopy full SHA for 362626a
.github/workflows/run-tests.yml
@@ -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