Skip to content

Merge pull request #23 from grnet/cipher_fix #100

Merge pull request #23 from grnet/cipher_fix

Merge pull request #23 from grnet/cipher_fix #100

Workflow file for this run

name: Python Code
on: [push, pull_request]
jobs:
test:
name: Python Tests
runs-on: ubuntu-18.04
steps:
- name: Git checkout
uses: actions/checkout@v1
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install tox
run: |
python -m pip install -U pip
pip install tox
- name: Lint Python code
run: tox -e lint
- name: Check Python code formatting
run: tox -e testfmt
- name: Test binaries
run: tox -e testbinary
- name: Test packages
run: tox -e testpackages