This repository has been archived by the owner on May 13, 2024. It is now read-only.
Merge pull request #8 from umcu/archive-repo #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Flake8 | |
on: | |
pull_request: | |
branches: main | |
push: | |
branches: main | |
jobs: | |
build: | |
name: linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 flake8-pyproject | |
- name: Analysing the code with flake8 | |
run: | | |
flake8 . |