Fix four form-filling bugs: first name, phone country, cover letter t… #84
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |