build: Use libcoveoc4ids[perf] #321
This file contains 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, pull_request] | |
jobs: | |
build: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: pip | |
cache-dependency-path: '**/requirements*.txt' | |
- run: pip install -r requirements.txt | |
# Check requirements.txt contains production requirements. | |
- run: ./manage.py --help | |
- run: pip install -r requirements_dev.txt | |
- name: Run checks and tests | |
env: | |
# https://github.com/OpenDataServices/lib-cove/issues/112 | |
PYTHONWARNINGS: error,ignore::DeprecationWarning:libcove.lib.common | |
shell: bash | |
run: | | |
./manage.py migrate | |
./manage.py makemigrations --check --dry-run | |
./manage.py check --fail-level WARNING | |
pytest -W error -W ignore::DeprecationWarning:libcove.lib.common --cov cove_oc4ids --cov cove_project | |
- env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: coveralls --service=github |