Skip to content

Update boto3 requirement from ~=1.28.10 to ~=1.34.75 #972

Update boto3 requirement from ~=1.28.10 to ~=1.34.75

Update boto3 requirement from ~=1.28.10 to ~=1.34.75 #972

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