meson.build: prepare for gentoolkit-0.6.8 #232
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: Code Quality | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
- name: Install flake | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 | |
- name: Run flake | |
run: | | |
flake8 pym |