Skip to content

Commit

Permalink
Add initial Github Action for CI (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksikka authored Oct 24, 2024
1 parent ba95702 commit 362626a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/run-tests.yml
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

0 comments on commit 362626a

Please sign in to comment.