Skip to content

Separate GitHub Actions. #1

Separate GitHub Actions.

Separate GitHub Actions. #1

Workflow file for this run

name: flake8
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Show Poetry Environment Info
run: poetry env info
- name: Install Development Dependencies
run: poetry install --no-root
- name: flake8
run: poetry run flake8 .