Skip to content

[ISSUE-#6] chore(ci): integrate flake8 into project #20

[ISSUE-#6] chore(ci): integrate flake8 into project

[ISSUE-#6] chore(ci): integrate flake8 into project #20

Workflow file for this run

name: CI
on:
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Pytest Unit Test
run: pytest
- name: Flake8 Lint Check
run: flake8