mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
Create flake8.yml
This commit is contained in:
parent
09b94d062c
commit
48e087997a
1 changed files with 22 additions and 0 deletions
22
.github/workflows/flake8.yml
vendored
Normal file
22
.github/workflows/flake8.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: flake8
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.8
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install flake8
|
||||
- name: Analysing the code with flake8
|
||||
run: |
|
||||
flake8 .
|
||||
Loading…
Reference in a new issue