Skip to content

feat: github actions #5

feat: github actions

feat: github actions #5

Workflow file for this run

name: Pychi
on:
push:
branches:
- main
- develop
- release
- dev
pull_request:
branches:
- main
- develop
- dev
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: pip install flake8
- name: Run flake8
run: make lint