-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial Github Action for CI (#208)
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Run tests | ||
on: | ||
# Allow manually running from Github UI or API. | ||
workflow_dispatch: | ||
# to re-run status checks, mark as draft then ready_for_review. | ||
pull_request: | ||
types: [ready_for_review] | ||
jobs: | ||
pytest-ubuntu-22.04: | ||
# Ships with python 3.10. Using it saves time installing it. | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: | | ||
# pip install -e ".[dev]" | ||
pip install fiftyone-db-ubuntu2204 | ||
# - name: Test with pytest | ||
# run: | | ||
# pytest |