Skip to content

remove python 3.10 since it produces a 3.1 pipeline #12

remove python 3.10 since it produces a 3.1 pipeline

remove python 3.10 since it produces a 3.1 pipeline #12

Workflow file for this run

name: Django CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test-and-lint:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: Password
POSTGRES_HOST: localhost
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Use black to check linting
run: |
black . --check
- name: Migrate
run: |
python manage.py migrate
- name: Run Tests
run: |
coverage run --source='.' manage.py test --settings treexpert.settings.ci
coverage report
coverage xml