mirror of
https://github.com/django-polymorphic/django-polymorphic.git
synced 2026-03-11 06:42:41 +03:00
22 lines
469 B
YAML
22 lines
469 B
YAML
name: CI-UnitTests
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out source repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Python environment
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install django==3.2
|
|
pip install dj-database-url
|
|
- name: Run tests
|
|
run: python -m runtests
|