Skip to content

build(deps): bump pycryptodome from 3.17 to 3.19.1 #106

build(deps): bump pycryptodome from 3.17 to 3.19.1

build(deps): bump pycryptodome from 3.17 to 3.19.1 #106

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 3
strategy:
matrix:
python-version:
- 3.9
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: python -m pip install --upgrade poetry
- name: Run Poetry Install
run: poetry install
- name: Run tests
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
run: make test