This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
Merge pull request #2206 from bensteinberg/add-link-to-banner #843
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: Lints | |
on: [push, pull_request] | |
defaults: | |
run: | |
working-directory: capstone | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Flake8 | |
run: | | |
pip install `egrep -o 'flake8==\S+' requirements.txt` # install our version of flake8 | |
flake8 |