Skip to content

Explicit dependency on cryptography #37

Explicit dependency on cryptography

Explicit dependency on cryptography #37

Workflow file for this run

name: Python application
on:
push:
branches: [ develop, master ]
pull_request:
branches: [ develop, master ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install black
- name: Lint with black
run: black .
- name: Run unittest
run: |
cd tests/certs
./generate_mock_certs.sh
cd -
python3 -m unittest