Skip to content

add environment variable info to meta data #252

add environment variable info to meta data

add environment variable info to meta data #252

Workflow file for this run

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 .