Skip to content

Update ddtrace requirement from ~=2.7.0 to ~=2.9.2 #987

Update ddtrace requirement from ~=2.7.0 to ~=2.9.2

Update ddtrace requirement from ~=2.7.0 to ~=2.9.2 #987

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ new-website ]
pull_request:
branches: [ new-website ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
cd rurusetto
python manage.py migrate
python manage.py test