Skip to content

chore(deps-dev): bump cryptography from 41.0.7 to 42.0.0 #119

chore(deps-dev): bump cryptography from 41.0.7 to 42.0.0

chore(deps-dev): bump cryptography from 41.0.7 to 42.0.0 #119

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: test
on:
push:
branches: [master]
pull_request:
branches: [master, dev]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- run: poetry install
- name: Lint with flake8
run: |
poetry run flake8 . --count --show-source --statistics
- name: Test with pytest
run: |
poetry run python -m unittest discover -v -s scilib/