Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshod5 committed Aug 8, 2024
1 parent 2e0a7bc commit 517aa5b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI
on: [ push ]

jobs:
build-and-run-tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up environment
run: |
git lfs fetch
git lfs pull
pip install uv
uv venv venv
source venv/bin/activate
uv pip install -r requirements.txt
- name: Run tests
run: |
source venv/bin/activate
python -m pytest -rsx tests/ --data-path=/home/runner/work/fair-mast/fair-mast/tests/mock_data/index
ruff-code-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1

0 comments on commit 517aa5b

Please sign in to comment.