Skip to content

chore: issue with poetry installation #43

chore: issue with poetry installation

chore: issue with poetry installation #43

Workflow file for this run

name: PyImgurApi
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: "${{ matrix.python-version }}"
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --with dev
- name: Lint with flake8
run: |
poetry run flake8 . --max-doc-length 72 --show-source
- name: Test with pytest
run: |
poetry run pytest