Skip to content

Update __init__.py

Update __init__.py #13

Workflow file for this run

name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r Cryptix/requirements.txt
- name: Lint with flake8
run: |
flake8
- name: Test with pytest
run: |
pytest