add environment variable info to meta data #252
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 isort mypy | |
- name: Black | |
run: | | |
black --check --verbose stackinator unittests | |
- name: isort | |
run: | | |
isort --check --skip stackinator/repo --diff . | |
- name: flake8 | |
run: | | |
flake8 --count --show-source --statistics . |