diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5578709..9d7d98e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,11 @@ jobs: steps: - uses: actions/checkout@v4 - uses: chartboost/ruff-action@v1 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run PyTest run: | pip install pytest