Skip to content

Functional encryption #9

Functional encryption

Functional encryption #9

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
codeQuality:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: upgrade pip
run: pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run unit test
run: pytest --cov=crypto
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: nova-collective/crypto-py