Django - Deployment and Production
Given this GitHub Actions snippet for a Django project:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python manage.py test
What will happen when this workflow runs?