Skip to content

Update details for render. #32

Update details for render.

Update details for render. #32

Workflow file for this run

name: New Store CI - Tests
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip cache purge
pip install -r requirements.txt
- name: Run tests
run: python manage.py test
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}