Skip to content

Secret Note Application #6

Secret Note Application

Secret Note Application #6

Workflow file for this run

name: secretnote
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12.3
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
cd secretnote
pip install -r requirements.txt
- name: Run Tests
run: |
cd secretnote
python manage.py test