This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
MAINT: Migrate to PEP517/518 packaging #358
Workflow file for this run
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: Contribution checks | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
stable: | |
name: Run flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install flake8 | |
run: python -m pip install flake8 | |
- name: Check EddyMotion | |
run: python -m flake8 src |