Feature/auto code-formatting #775
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions. | |
# Based upon: | |
# https://github.com/actions/starter-workflows/blob/main/ci/python-package.yml | |
# As directed from: | |
# https://docs.github.com/en/actions/guides/building-and-testing-python#starting-with-the-python-workflow-template | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.3.2 | |
- name: Install dependencies | |
run: poetry install -E crypto | |
- name: Lint with flake8 | |
run: poetry run flake8 | |
- name: Test with pytest | |
run: poetry run pytest |