Skip to content

build(deps): Bump actions/setup-python from 4 to 5 #365

build(deps): Bump actions/setup-python from 4 to 5

build(deps): Bump actions/setup-python from 4 to 5 #365

Workflow file for this run

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@v4
- uses: actions/setup-python@v5
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