Skip to content

Fix four form-filling bugs: first name, phone country, cover letter t… #84

Fix four form-filling bugs: first name, phone country, cover letter t…

Fix four form-filling bugs: first name, phone country, cover letter t… #84

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