use cryptography instead of pycryptodome, since it feels more explicit #183
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
container: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install pip dependencies | |
run: | | |
pip install -r requirements/requirements-dev.txt | |
python -c 'from pypandoc.pandoc_download import download_pandoc; download_pandoc(version="3.4")' | |
- name: install optional system depencencies | |
run: sudo apt install -y asciidoctor | |
- name: Run tests | |
run: ./test.sh |