Skip to content

Lab1

Lab1 #7

Workflow file for this run

name: cl
on:
push:
branches:
- "develop"
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set Up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install requirements.txt
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run flake8
run: flake8
- name: Run tests
timeout-minutes: 5
run: python manage.py test