Bump pycodestyle from 2.10.0 to 2.12.1 #44
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: Python package | |
'on': | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version-file: pyproject.toml | |
cache: pip | |
cache-dependency-path: | | |
poetry.lock | |
- name: Install poetry | |
run: | | |
python -m pip install poetry | |
- name: Install package | |
run: | | |
poetry install | |
- name: Test with pytest | |
run: | | |
python -m poetry run pytest |