Skip to content

add todo due date

add todo due date #11

Workflow file for this run

name: Tests Runner
on:
# - push
# - pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
steps:
- name: Get the code
uses: actions/checkout@v3
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: 'pipenv'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pipenv
python -m venv .venv
source .venv/bin/activate
pipenv install --deploy --dev
- name: Test the Project
run: pytest