run post-install after uenv meta data has been generated #268
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: lint | |
on: | |
pull_request: | |
branches: [master, main] | |
jobs: | |
lint: | |
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 Tools | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install black flake8 mypy | |
- name: Black | |
run: | | |
black --check --verbose stackinator unittests | |
- name: flake8 | |
run: | | |
flake8 --count --show-source --statistics . |