Skip to content

Add: Factory_boy missing dependency #96

Add: Factory_boy missing dependency

Add: Factory_boy missing dependency #96

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
env:
SECRET_KEY: "SK"
ALLOWED_HOSTS: "*,"
DJANGO_SETTINGS_MODULE: "nexus.settings"
jobs:
container-job:
runs-on: ubuntu-latest
container: python:3.10-slim
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Setup Python
run: |
pip install poetry
poetry config virtualenvs.create false --local
poetry install
- name: Run Tests
run: task test