Skip to content

Merge branch 'innerloopinc/REQ-2-on-demand-interview-prep-pipeline' #79

Merge branch 'innerloopinc/REQ-2-on-demand-interview-prep-pipeline'

Merge branch 'innerloopinc/REQ-2-on-demand-interview-prep-pipeline' #79

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: pip install -r requirements.txt pytest pytest-cov ruff
- name: Lint (ruff)
run: ruff check .
- name: Run tests
run: |
pytest tests/ \
-m "not integration and not windows" \
--cov=utils --cov=connectors \
--cov-report=term-missing \
--cov-report=xml \
-v
- name: Upload coverage report
uses: codecov/codecov-action@v5
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
fail_ci_if_error: false