Skip to content

build(deps-dev): bump flake8 from 6.0.0 to 6.1.0 #126

build(deps-dev): bump flake8 from 6.0.0 to 6.1.0

build(deps-dev): bump flake8 from 6.0.0 to 6.1.0 #126

Workflow file for this run

name: Test
on:
push:
jobs:
build:
name: Nosetests
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry==1.2.2
poetry install --sync
- name: Test
run: poetry run nose2 -v