Skip to content

setup mongoDB database + added seed scripts for mongoDB + line randomizer #4

setup mongoDB database + added seed scripts for mongoDB + line randomizer

setup mongoDB database + added seed scripts for mongoDB + line randomizer #4

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: pyrizz_tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x # Specify the Python version you need
- name: Install dependencies
run: |
pip install pipenv
pipenv install --dev
# Add more steps for your tests and other tasks